Skip to content

Commit

Permalink
correct test
Browse files Browse the repository at this point in the history
  • Loading branch information
stolarczyk committed Oct 15, 2019
1 parent fb38195 commit 32687a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_collection.py
Expand Up @@ -209,7 +209,7 @@ def test_powerset_illegal_input(arbwrap, kwargs, exp_err, pool):

@pytest.mark.parametrize("dict", [{"a": 1}, {"b": None}])
def test_asciifying_dicts(dict):
if sys.version_info[0] <= 3:
if sys.version_info[0] >= 3:
with pytest.warns(UserWarning):
assert dict == asciify_dict(dict)
else:
Expand Down

0 comments on commit 32687a5

Please sign in to comment.