Python: wrong packages fixed

GitOrigin-RevId: ddbeec662fb1a08a5ad961a4d8dac10c40557e71
This commit is contained in:
Ilya.Kazakevich
2025-04-15 20:28:00 +00:00
committed by intellij-monorepo-bot
parent 489c017c6f
commit f88aadee36
5 changed files with 13 additions and 15 deletions
@@ -1,7 +1,6 @@
// Copyright 2000-2021 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package com.intellij.python.featuresTrainer.ifs
package com.jetbrains.python.featureTraining.ifs
import junit.framework.TestCase
import training.featuresSuggester.FeatureSuggesterTestUtils.focusEditor
import training.featuresSuggester.FeatureSuggesterTestUtils.logicalPositionToOffset
import training.featuresSuggester.FeatureSuggesterTestUtils.performFindInFileAction
@@ -70,7 +69,7 @@ class FileStructureSuggesterPythonTest : FileStructureSuggesterTest() {
}
testInvokeLater(myFixture.project) {
TestCase.assertTrue(expectedSuggestion is NoSuggestion)
assertTrue(expectedSuggestion is NoSuggestion)
}
}
@@ -82,7 +81,7 @@ class FileStructureSuggesterPythonTest : FileStructureSuggesterTest() {
}
testInvokeLater(myFixture.project) {
TestCase.assertTrue(expectedSuggestion is NoSuggestion)
assertTrue(expectedSuggestion is NoSuggestion)
}
}
@@ -94,7 +93,7 @@ class FileStructureSuggesterPythonTest : FileStructureSuggesterTest() {
}
testInvokeLater(myFixture.project) {
TestCase.assertTrue(expectedSuggestion is NoSuggestion)
assertTrue(expectedSuggestion is NoSuggestion)
}
}
@@ -106,7 +105,7 @@ class FileStructureSuggesterPythonTest : FileStructureSuggesterTest() {
}
testInvokeLater(myFixture.project) {
TestCase.assertTrue(expectedSuggestion is NoSuggestion)
assertTrue(expectedSuggestion is NoSuggestion)
}
}
@@ -118,7 +117,7 @@ class FileStructureSuggesterPythonTest : FileStructureSuggesterTest() {
}
testInvokeLater(myFixture.project) {
TestCase.assertTrue(expectedSuggestion is NoSuggestion)
assertTrue(expectedSuggestion is NoSuggestion)
}
}
}
@@ -1,5 +1,5 @@
// Copyright 2000-2021 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package com.intellij.python.featuresTrainer.ifs
package com.jetbrains.python.featureTraining.ifs
import training.featuresSuggester.FeatureSuggesterTestUtils.copyCurrentSelection
import training.featuresSuggester.FeatureSuggesterTestUtils.cutBetweenLogicalPositions
@@ -1,7 +1,6 @@
// Copyright 2000-2021 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package com.intellij.python.featuresTrainer.ifs
package com.jetbrains.python.featureTraining.ifs
import junit.framework.TestCase
import training.featuresSuggester.FeatureSuggesterTest
import training.featuresSuggester.FeatureSuggesterTestUtils.insertNewLineAt
import training.featuresSuggester.FeatureSuggesterTestUtils.moveCaretToLogicalPosition
@@ -59,7 +58,7 @@ class LineCommentingSuggesterPythonTest : FeatureSuggesterTest() {
}
testInvokeLater(myFixture.project) {
TestCase.assertTrue(expectedSuggestion is NoSuggestion)
assertTrue(expectedSuggestion is NoSuggestion)
}
}
@@ -74,7 +73,7 @@ class LineCommentingSuggesterPythonTest : FeatureSuggesterTest() {
}
testInvokeLater(myFixture.project) {
TestCase.assertTrue(expectedSuggestion is NoSuggestion)
assertTrue(expectedSuggestion is NoSuggestion)
}
}
@@ -96,7 +95,7 @@ class LineCommentingSuggesterPythonTest : FeatureSuggesterTest() {
}
testInvokeLater(myFixture.project) {
TestCase.assertTrue(expectedSuggestion is NoSuggestion)
assertTrue(expectedSuggestion is NoSuggestion)
}
}
}
@@ -1,4 +1,4 @@
package com.intellij.python.featuresTrainer.ifs
package com.jetbrains.python.featureTraining.ifs
import com.intellij.testFramework.PlatformTestUtil
import java.io.File
@@ -1,5 +1,5 @@
// Copyright 2000-2021 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package com.intellij.python.featuresTrainer.ifs
package com.jetbrains.python.featureTraining.ifs
import training.featuresSuggester.FeatureSuggesterTestUtils.chooseCompletionItem
import training.featuresSuggester.FeatureSuggesterTestUtils.deleteTextBetweenLogicalPositions