We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f677b91 commit 0fe1d65Copy full SHA for 0fe1d65
test/test_misc.py
@@ -106,7 +106,7 @@ def test_Version_Check(self):
106
107
# test for valid versions
108
from roundup.version_check import VERSION_NEEDED
109
- self.assertEqual((2, 7), VERSION_NEEDED)
+ self.assertEqual((3, 7), VERSION_NEEDED)
110
del(sys.modules['roundup.version_check'])
111
112
@@ -124,7 +124,7 @@ def test_Version_Check(self):
124
sys.stdout = capturedOutput
125
126
sys.stdout = sys.__stdout__
127
- self.assertIn("Roundup requires Python 2.7", capturedOutput.getvalue())
+ self.assertIn("Roundup requires Python 3.7", capturedOutput.getvalue())
128
129
# reset to valid values for future tests
130
sys.exit = real_exit
0 commit comments