Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/refactoring/extractlocalvariable/ExtractLocalVariableRefactoringTest.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/refactoring/extractlocalvariable/ExtractLocalVariableRefactoringTest.java b/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/refactoring/extractlocalvariable/ExtractLocalVariableRefactoringTest.java
index b483a2ed545..3b8ec08824a 100644
--- a/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/refactoring/extractlocalvariable/ExtractLocalVariableRefactoringTest.java
+++ b/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/refactoring/extractlocalvariable/ExtractLocalVariableRefactoringTest.java
@@ -554,15 +554,17 @@ public class ExtractLocalVariableRefactoringTest extends RefactoringTestBase {
//main.c
//int getSomething(int x) { return 0; }
+ //int getSomething2(int x) { return 0; }
//
//void f(){
- // /*$*/getSomething(getSomething(0))/*$$*/;
+ // /*$*/getSomething(getSomething2(0))/*$$*/;
//}
//====================
//int getSomething(int x) { return 0; }
+ //int getSomething2(int x) { return 0; }
//
//void f(){
- // int something = getSomething(getSomething(0));
+ // int something = getSomething(getSomething2(0));
// something;
//}
public void testSuggestedNameCFile_Bug412032_2() throws Exception {

Back to the top