PY-59555: Use the proper python2.7 tag in testSmartStepIntoDecorator2Python3

The tag `python2` is not used for the environments anymore (see `setup-test-environment/build.gradle`)

GitOrigin-RevId: cf81055dd72258c75fcace09fb2506c1c75a9744
This commit is contained in:
Artem Mukhin
2023-04-17 18:19:31 +02:00
committed by intellij-monorepo-bot
parent f0336f96d6
commit 908f72b3ab

View File

@@ -497,7 +497,7 @@ public class PythonDebuggerSteppingTest extends PyEnvTestCase {
@Override
public @NotNull Set<String> getTags() {
return ImmutableSet.<String>builder().addAll(super.getTags())
.add("-python2")
.add("-python2.7")
.add("-django")
.add("-python3.11") // PY-57113
.build();