Skip to content

Commit 51ce558

Browse files
committed
fix: compatability test
1 parent fa7e585 commit 51ce558

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: test/unit/test_compatability.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class TestWarnDeprecatedPython:
2525
def test_happy_version(self):
2626
with mock.patch.object(sys, "version_info") as v_info:
2727
v_info.major = 3
28-
v_info.minor = 7
28+
v_info.minor = 8
2929
with pytest.warns(None) as record:
3030
_warn_deprecated_python()
3131
assert len(record) == 0

0 commit comments

Comments
 (0)