From e89f99496d754980f45ee72cf10ea2b7deeda5e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Norbert=20Pl=F6tt?= Date: Wed, 22 Mar 2006 00:57:16 +0000 Subject: [PATCH] Test ported and defects (See bug #129768) --- .../CompletionTest_FunctionReference_Prefix.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/text/contentassist2/CompletionTest_FunctionReference_Prefix.java b/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/text/contentassist2/CompletionTest_FunctionReference_Prefix.java index 98abdafe28f..e51e9e3f99b 100644 --- a/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/text/contentassist2/CompletionTest_FunctionReference_Prefix.java +++ b/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/text/contentassist2/CompletionTest_FunctionReference_Prefix.java @@ -33,9 +33,9 @@ public class CompletionTest_FunctionReference_Prefix extends CompletionProposal private final CompletionKind expectedKind = CompletionKind.FUNCTION_REFERENCE; private final String expectedPrefix = "x"; private final String[] expectedResults = { - "xLocal", // TODO: should be "xLocal : int", - "xAClassField", // TODO: should be "xAClassField : float", - "xVariable", // TODO: should be "xVariable : int", + "xLocal : int", + "xAClassField : float", + "xVariable : int", "xAClassMethod(int x) void", "xFunction(void) bool", "xOtherFunction(void) void",