Skip to content

Commit

Permalink
chore: Update API and AI constructors in tests to include the logs pa…
Browse files Browse the repository at this point in the history
…rameter
  • Loading branch information
Marius-P1 committed Jun 23, 2024
1 parent 29fe000 commit aab4a05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/ai/tests/Network/TestAPI.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def testAPI():

def testAPIConstructor():
try:
api = API("localhost", 4242)
api = API("localhost", 4242, False)
assert api.host == "localhost"
assert api.port == 4242
assert api.inputs == []
Expand Down
2 changes: 1 addition & 1 deletion tests/ai/tests/TestAI.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def testAI():

def testAIConstructor():
try:
ai = AI("localhost", 4242, "test")
ai = AI("localhost", 4242, "test", False)
assert ai.api.host == "localhost"
assert ai.api.port == 4242
assert ai.teamName == "test"
Expand Down

0 comments on commit aab4a05

Please sign in to comment.