Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/contentassist/MethodParamsCompletionTest.java')
-rw-r--r--org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/contentassist/MethodParamsCompletionTest.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/contentassist/MethodParamsCompletionTest.java b/org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/contentassist/MethodParamsCompletionTest.java
index ed2c5bc56c..9f60dded74 100644
--- a/org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/contentassist/MethodParamsCompletionTest.java
+++ b/org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/contentassist/MethodParamsCompletionTest.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2005, 2011 IBM Corporation and others.
+ * Copyright (c) 2005, 2013 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -44,7 +44,7 @@ public class MethodParamsCompletionTest extends AbstractCompletionTest {
}
public void testMethodWithParam2() throws Exception {
- assertMethodBodyProposal("fList.", "add(int", "fList.add(|arg0|, arg1)");
+ assertMethodBodyProposal("fList.", "add(int", "fList.add(|arg0|, arg1);");
}
public void testInsertMethodWithParam1() throws Exception {
@@ -52,7 +52,7 @@ public class MethodParamsCompletionTest extends AbstractCompletionTest {
}
public void testInsertMethodWithParam2() throws Exception {
- assertMethodBodyProposal("fList.|bar", "add(int", "fList.add(|arg0|, arg1)bar");
+ assertMethodBodyProposal("fList.|bar", "add(int", "fList.add(|arg0|, arg1);bar");
}
public void testOverwriteMethodWithParam1() throws Exception {
@@ -62,7 +62,7 @@ public class MethodParamsCompletionTest extends AbstractCompletionTest {
public void testOverwriteMethodWithParam2() throws Exception {
getJDTUIPrefs().setValue(PreferenceConstants.CODEASSIST_INSERT_COMPLETION, false);
- assertMethodBodyProposal("fList.|bar", "add(int", "fList.add(|arg0|, arg1)");
+ assertMethodBodyProposal("fList.|bar", "add(int", "fList.add(|arg0|, arg1);");
}
}

Back to the top