mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Python: wrong packages fixed
GitOrigin-RevId: ddbeec662fb1a08a5ad961a4d8dac10c40557e71
This commit is contained in:
committed by
intellij-monorepo-bot
parent
489c017c6f
commit
f88aadee36
+6
-7
@@ -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
-1
@@ -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
|
||||
|
||||
+4
-5
@@ -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
-1
@@ -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
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user