aboutsummaryrefslogtreecommitdiff
path: root/autogpts/autogpt/tests/unit/models/test_base_open_api_plugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'autogpts/autogpt/tests/unit/models/test_base_open_api_plugin.py')
-rw-r--r--autogpts/autogpt/tests/unit/models/test_base_open_api_plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/autogpts/autogpt/tests/unit/models/test_base_open_api_plugin.py b/autogpts/autogpt/tests/unit/models/test_base_open_api_plugin.py
index e656f4643..7a8522e7f 100644
--- a/autogpts/autogpt/tests/unit/models/test_base_open_api_plugin.py
+++ b/autogpts/autogpt/tests/unit/models/test_base_open_api_plugin.py
@@ -73,7 +73,7 @@ def test_dummy_plugin_default_methods(dummy_plugin):
assert isinstance(pre_command, tuple)
assert len(pre_command) == 2
assert pre_command[0] == "evolve"
- assert pre_command[1]["continuously"] == True
+ assert pre_command[1]["continuously"] is True
post_command = dummy_plugin.post_command("evolve", "upgraded successfully!")
assert isinstance(post_command, str)
assert post_command == "upgraded successfully!"