Skip to content

Commit 7a1a8c6

Browse files
author
Shubham Chaturvedi
committed
fix: updates compatability test to 3.7
1 parent 5631e22 commit 7a1a8c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/unit/test_compatability.py

Lines changed: 1 addition & 1 deletion
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 = 6
28+
v_info.minor = 7
2929
with pytest.warns(None) as record:
3030
_warn_deprecated_python()
3131
assert len(record) == 0

0 commit comments

Comments
 (0)