remove redundant coverage test

This commit is contained in:
Reagan Lee 2023-10-02 13:27:07 -07:00
parent a1a35d0cb9
commit 18604b3837
1 changed files with 0 additions and 15 deletions

View File

@ -1345,21 +1345,6 @@ def test_reprcompare_whitespaces() -> None:
]
@pytest.mark.parametrize("op", [">=", "<="])
def test_operators_not_set_for_full_coverage(op, pytester: Pytester) -> None:
pytester.makepyfile(
f"""
def test_hello():
x = ["hello x"]
y = ["hello y"]
assert x {op} y
"""
)
result = pytester.runpytest()
result.stdout.no_fnmatch_line(f"assert x {op} y")
class TestSetAssertions:
@pytest.mark.parametrize("op", [">=", ">", "<=", "<", "=="])
def test_set_extra_item(self, op, pytester: Pytester) -> None: