From ade020930cc83967ac4e979e15f7ba8693e88e68 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Mon, 24 Dec 2012 17:45:58 +0100 Subject: [PATCH] fix testdata --- .../testSrc/com/jetbrains/python/PySuppressInspectionsTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/testSrc/com/jetbrains/python/PySuppressInspectionsTest.java b/python/testSrc/com/jetbrains/python/PySuppressInspectionsTest.java index c2cd759252df..c2ffb75db4d6 100644 --- a/python/testSrc/com/jetbrains/python/PySuppressInspectionsTest.java +++ b/python/testSrc/com/jetbrains/python/PySuppressInspectionsTest.java @@ -42,7 +42,7 @@ public class PySuppressInspectionsTest extends PyTestCase { myFixture.configureByFile("inspections/suppress/suppressForStatement.py"); myFixture.enableInspections(PyUnresolvedReferencesInspection.class); final List intentions = myFixture.filterAvailableIntentions("Suppress for statement"); - assertEquals(2, intentions.size()); + assertEquals(3, intentions.size()); // Rename reference, Ignore unresolved reference, Mark all unresolved attributes final IntentionAction suppressAction = intentions.get(0); myFixture.launchAction(suppressAction); myFixture.checkResultByFile("inspections/suppress/suppressForStatement.after.py");