Commit 59782372 authored by Stefan Behnel's avatar Stefan Behnel

fix typo in test

parent 80f985f2
...@@ -87,4 +87,4 @@ def get_in_condition(dict d, key, expected_result): ...@@ -87,4 +87,4 @@ def get_in_condition(dict d, key, expected_result):
>>> get_in_condition(d, 'a', 1) >>> get_in_condition(d, 'a', 1)
True True
""" """
return d.get(key) == expected_result or d.get(key) == expected_result return d.get(key) is expected_result or d.get(key) == expected_result
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment