diff --git a/hypothesis-python/tests/cover/test_testdecorators.py b/hypothesis-python/tests/cover/test_testdecorators.py index ab875c7548..a5e8715ec4 100644 --- a/hypothesis-python/tests/cover/test_testdecorators.py +++ b/hypothesis-python/tests/cover/test_testdecorators.py @@ -49,7 +49,7 @@ def test_int_addition_is_commutative(x, y): @fails -@given(text(), text()) +@given(text(min_size=1), text(min_size=1)) def test_str_addition_is_commutative(x, y): assert x + y == y + x @@ -147,18 +147,6 @@ def test_is_the_answer(x): assert x == 42 -@fails -@given(text(), text()) -def test_text_addition_is_not_commutative(x, y): - assert x + y == y + x - - -@fails -@given(binary(), binary()) -def test_binary_addition_is_not_commutative(x, y): - assert x + y == y + x - - @given(integers(1, 10)) def test_integers_are_in_range(x): assert 1 <= x <= 10