diff --git a/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/internal/pdom/tests/CPPFunctionTests.java b/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/internal/pdom/tests/CPPFunctionTests.java index 83702d886df..784200f7820 100644 --- a/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/internal/pdom/tests/CPPFunctionTests.java +++ b/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/internal/pdom/tests/CPPFunctionTests.java @@ -95,8 +95,7 @@ public class CPPFunctionTests extends PDOMTestBase { assertTrue(((ICPPFunction) bindings[0]).isExtern()); } - // disabled for 167311 - public void _testStaticCPPFunction() throws Exception { + public void testStaticCPPFunction() throws Exception { // static elements cannot be found on global scope, see bug 161216 IBinding[] bindings = findQualifiedName(pdom, "staticCPPFunction"); assertEquals(0, bindings.length); diff --git a/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/internal/pdom/tests/MethodTests.java b/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/internal/pdom/tests/MethodTests.java index 47aa9b5ba64..ea5e4227dfd 100644 --- a/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/internal/pdom/tests/MethodTests.java +++ b/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/internal/pdom/tests/MethodTests.java @@ -181,8 +181,7 @@ public class MethodTests extends PDOMTestBase { assertTrue(method.isInline()); } - // disabled for 167311 - public void _testStaticMethod() throws Exception { + public void testStaticMethod() throws Exception { IBinding[] bindings = findQualifiedName(pdom, "Class1::staticMethod"); assertEquals(1, bindings.length); ICPPMethod method = (ICPPMethod) bindings[0];