diff --git a/python/testSrc/com/jetbrains/env/python/testing/PythonUnitTestingTest.java b/python/testSrc/com/jetbrains/env/python/testing/PythonUnitTestingTest.java index cb8751f6517d..afa2dc30a2ee 100644 --- a/python/testSrc/com/jetbrains/env/python/testing/PythonUnitTestingTest.java +++ b/python/testSrc/com/jetbrains/env/python/testing/PythonUnitTestingTest.java @@ -35,8 +35,8 @@ public class PythonUnitTestingTest extends PyEnvTestCase { @Override public boolean isLanguageLevelSupported(@NotNull final LanguageLevel level) { - // This test requires unittest to have decorator "test" that does not exists in 2.5 - return level.compareTo(LanguageLevel.PYTHON25) > 0; + // This test requires unittest to have decorator "test" that does not exists in 2.6 + return level.compareTo(LanguageLevel.PYTHON26) > 0; } @Override