Commit 428aa8c0 authored by Stefan Behnel's avatar Stefan Behnel

fix test

parent 486f89e4
......@@ -87,4 +87,4 @@ def get_in_condition(dict d, key, expected_result):
>>> get_in_condition(d, 'a', 1)
True
"""
return d.get(key) is expected_result
return 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