Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
amunger committed Sep 16, 2024
1 parent 820728b commit 0daf492
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python_files/tests/test_get_variable_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def test_list():
def test_dict():
found = assert_variable_found({"a": 1, "b": 2}, "{'a': 1, 'b': 2}", "dict", None)
assert found["hasNamedChildren"]

Check failure on line 70 in python_files/tests/test_get_variable_info.py

View workflow job for this annotation

GitHub Actions / Check Python types

Object of type "None" is not subscriptable (reportOptionalSubscript)

Check failure on line 70 in python_files/tests/test_get_variable_info.py

View workflow job for this annotation

GitHub Actions / Check Python types

Object of type "None" is not subscriptable (reportOptionalSubscript)
assert_property(found, "a", "2")
assert_property(found, "a", "1")
assert_property(found, "b", "2")


Expand Down

0 comments on commit 0daf492

Please sign in to comment.