diff --git a/python/testData/codeInsight/mlcompletion/numberOfOccurrencesNamedArgsWithPrefix.py b/python/testData/codeInsight/mlcompletion/numberOfOccurrencesNamedArgsWithPrefix.py deleted file mode 100644 index 8d6cc1aade38..000000000000 --- a/python/testData/codeInsight/mlcompletion/numberOfOccurrencesNamedArgsWithPrefix.py +++ /dev/null @@ -1 +0,0 @@ -print("a", end=".", en) \ No newline at end of file diff --git a/python/testSrc/com/jetbrains/python/codeInsight/mlcompletion/PyMlCompletionFeaturesTest.kt b/python/testSrc/com/jetbrains/python/codeInsight/mlcompletion/PyMlCompletionFeaturesTest.kt index 925f83fe8b02..25ded364b3ff 100644 --- a/python/testSrc/com/jetbrains/python/codeInsight/mlcompletion/PyMlCompletionFeaturesTest.kt +++ b/python/testSrc/com/jetbrains/python/codeInsight/mlcompletion/PyMlCompletionFeaturesTest.kt @@ -140,11 +140,6 @@ class PyMlCompletionFeaturesTest: PyMlCompletionTestCase() { Pair("kind", MLFeatureValue.categorical(PyCompletionMlElementKind.TYPE_OR_CLASS)), Pair("is_builtins", MLFeatureValue.binary(false))) - fun testNumberOfOccurrencesNamedArgsWithPrefix() = doElementFeaturesTest("end=", - Pair("number_of_occurrences_in_scope", MLFeatureValue.numerical(1)), - Pair("kind", MLFeatureValue.categorical(PyCompletionMlElementKind.NAMED_ARG)), - Pair("is_builtins", MLFeatureValue.binary(false))) - fun testNumberOfOccurrencesNamedArgsEmptyPrefix() = doElementFeaturesTest("file=", Pair("number_of_occurrences_in_scope", MLFeatureValue.numerical(0)), Pair("kind", MLFeatureValue.categorical(PyCompletionMlElementKind.NAMED_ARG)),