##// END OF EJS Templates
tests: correct version check in clientreactor test...
Augie Fackler -
r41154:685cf59a default
parent child Browse files
Show More
@@ -601,7 +601,7 b' class StreamSettingsTests(unittest.TestC'
601 self.assertEqual(meta[b'data'], response2)
601 self.assertEqual(meta[b'data'], response2)
602
602
603 if __name__ == '__main__':
603 if __name__ == '__main__':
604 if (3, 6, 0) <= sys.version_info <= (3, 6, 3):
604 if (3, 6, 0) <= sys.version_info < (3, 6, 4):
605 # Python 3.6.0 through 3.6.3 inclusive shipped with
605 # Python 3.6.0 through 3.6.3 inclusive shipped with
606 # https://bugs.python.org/issue31825 and we can't run these
606 # https://bugs.python.org/issue31825 and we can't run these
607 # tests on those specific versions of Python. Sigh.
607 # tests on those specific versions of Python. Sigh.
General Comments 0
You need to be logged in to leave comments. Login now