Commit d930e990 authored by Chris Lamb's avatar Chris Lamb 👀
Browse files

Address long-hidden issue in the test_versions testsuite where we weren't...

Address long-hidden issue in the test_versions testsuite where we weren't testing ">" as it was masked by the tests for equality.
parent 0c3ec6aa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -172,6 +172,6 @@ def test_version_gt(a, b):


@pytest.mark.parametrize("a,b", [c[:2] for c in cases if c[2] == 0])
def test_version_gt(a, b):
def test_version_eq(a, b):
    assert Version(a) == b
    assert Version(a) == Version(b)