mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2026-01-25 00:44:32 +01:00
Merge branch 'master' into autogpt/agent-protocol
This commit is contained in:
@@ -16,13 +16,9 @@ class TestPasswordGenerator(unittest.TestCase):
|
||||
password_generator.generate_password(17)
|
||||
|
||||
def test_password_content(self):
|
||||
password = password_generator.generate_password(8)
|
||||
self.assertTrue(any(c.islower() for c in password))
|
||||
self.assertTrue(any(c.isupper() for c in password))
|
||||
password = password_generator.generate_password()
|
||||
self.assertTrue(any(c.isdigit() for c in password))
|
||||
self.assertTrue(
|
||||
any(c in password_generator.string.punctuation for c in password)
|
||||
)
|
||||
self.assertTrue(any(c in password_generator.string.punctuation for c in password))
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"coding",
|
||||
"general"
|
||||
],
|
||||
"cutoff": 90,
|
||||
"cutoff": 180,
|
||||
"dependencies": [
|
||||
"TestTicTacToe",
|
||||
"TestReadFile"
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
Item, Color
|
||||
Banana, Yellow
|
||||
Leaf, Green
|
||||
Sky, Blue
|
||||
Sunflower, Yellow
|
||||
Grass, Green
|
||||
Jeans, Blue
|
||||
Lemon, Yellow
|
||||
Tree, Green
|
||||
Ocean, Blue
|
||||
Daisy, Yellow
|
||||
Fern, Green
|
||||
Item,Color
|
||||
Banana,yellow
|
||||
Leaf,green
|
||||
Sky,blue
|
||||
Sunflower,yellow
|
||||
Grass,green
|
||||
Jeans,blue
|
||||
Lemon,yellow
|
||||
Tree,green
|
||||
Ocean,blue
|
||||
Daisy,yellow
|
||||
Fern,green
|
||||
|
Reference in New Issue
Block a user