aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_constructor.py')
-rw-r--r--tests/test_constructor.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/test_constructor.py b/tests/test_constructor.py
index 1512939..ebc9b85 100644
--- a/tests/test_constructor.py
+++ b/tests/test_constructor.py
@@ -34,9 +34,7 @@ def test_constructor_missing_client_secret():
34@pytest.mark.vcr() 34@pytest.mark.vcr()
35def test_verify_version(api): 35def test_verify_version(api):
36 assert api.verify_minimum_version("2.3.3") == True 36 assert api.verify_minimum_version("2.3.3") == True
37 assert api.verify_minimum_version("2.3.4") == False 37 assert api.verify_minimum_version("9999.9999.9999") == False
38 assert api.verify_minimum_version("2.4.3") == False
39 assert api.verify_minimum_version("3.3.3") == False
40 assert api.verify_minimum_version("1.0.0") == True 38 assert api.verify_minimum_version("1.0.0") == True
41 39
42def test_supported_version(api): 40def test_supported_version(api):
Powered by cgit v1.2.3 (git 2.41.0)