aboutsummaryrefslogtreecommitdiff
path: root/autogpts/autogpt/tests/unit/models/test_base_open_api_plugin.py
diff options
context:
space:
mode:
authorGravatar Reinier van der Leer <pwuts@agpt.co> 2024-01-29 17:23:47 +0100
committerGravatar Reinier van der Leer <pwuts@agpt.co> 2024-01-29 17:23:47 +0100
commit7ffc374bb58376317f249c929e5846e57b0da543 (patch)
tree49c4f6ced963ce22da38a6e1c308def0ec8ef180 /autogpts/autogpt/tests/unit/models/test_base_open_api_plugin.py
parentfix: Fix missing categories in data_types.py (diff)
parentfix(agent/json_utils): Make `extract_dict_from_response` more robust (diff)
downloadAuto-GPT-bringing-in-the-benchmark.tar.gz
Auto-GPT-bringing-in-the-benchmark.tar.bz2
Auto-GPT-bringing-in-the-benchmark.zip
Merge branch 'master' into bringing-in-the-benchmarkbringing-in-the-benchmark
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!"