Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Herrmann2012-12-16 22:58:12 +0000
committerStephan Herrmann2012-12-16 22:58:12 +0000
commita500e6665f0cf255c37f55b5979fa75295e94c3b (patch)
treed465fbb47945db1457d830668b90d6d69dae0fe2
parent5bd889cdcad9f3231d2a635ec8e38c33ae64583c (diff)
downloadorg.eclipse.objectteams-a500e6665f0cf255c37f55b5979fa75295e94c3b.tar.gz
org.eclipse.objectteams-a500e6665f0cf255c37f55b5979fa75295e94c3b.tar.xz
org.eclipse.objectteams-a500e6665f0cf255c37f55b5979fa75295e94c3b.zip
Improve expected error message after Bug 388795 has been fixed in JDT
-rw-r--r--testplugins/org.eclipse.objectteams.otdt.tests/otjld/org/eclipse/objectteams/otdt/tests/otjld/other/Modifiers.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/testplugins/org.eclipse.objectteams.otdt.tests/otjld/org/eclipse/objectteams/otdt/tests/otjld/other/Modifiers.java b/testplugins/org.eclipse.objectteams.otdt.tests/otjld/org/eclipse/objectteams/otdt/tests/otjld/other/Modifiers.java
index 72c046625..fb0fc69c7 100644
--- a/testplugins/org.eclipse.objectteams.otdt.tests/otjld/org/eclipse/objectteams/otdt/tests/otjld/other/Modifiers.java
+++ b/testplugins/org.eclipse.objectteams.otdt.tests/otjld/org/eclipse/objectteams/otdt/tests/otjld/other/Modifiers.java
@@ -724,7 +724,7 @@ public class Modifiers extends AbstractOTJLDTest {
// a method with a callin modifier overwrites an inherited non-callin method, OK to expect 2. error re unimplemented ifc method
// 7.1.12-otjld-callin-method-overwrites-noncallin-method-2
public void test7112_callinMethodOverwritesNoncallinMethod2() {
- runNegativeTestMatching(
+ runNegativeTest(
new String[] {
"Team7112cmonm2.java",
"\n" +
@@ -754,7 +754,7 @@ public class Modifiers extends AbstractOTJLDTest {
"1. ERROR in Team7112cmonm2.java (at line 3)\n" +
" public class Role7112cmonm2 implements T7112cmonm2_1 playedBy T7112cmonm2_2 {\n" +
" ^^^^^^^^^^^^^^\n" +
- "The type Team7112cmonm2.Role7112cmonm2 must implement the inherited abstract method Team7112cmonm2.Role7112cmonm2.test()\n" +
+ "The type Team7112cmonm2.Role7112cmonm2 must implement the inherited abstract method T7112cmonm2_1.test()\n" +
"----------\n" +
"2. ERROR in Team7112cmonm2.java (at line 4)\n" +
" callin void test() {\n" +

Back to the top