Commit 36b75ecd authored by Stefan Behnel's avatar Stefan Behnel

fix test

parent 428aa8c0
......@@ -36,4 +36,4 @@ def getitem_in_condition(dict d, key, expected_result):
>>> getitem_in_condition(d, 'a', 1)
True
"""
return d[key] is expected_result
return d[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