From 94299ac18be620ca3a30247413c652eb99f7cab5 Mon Sep 17 00:00:00 2001 From: Andrew Ferguson Date: Tue, 27 Mar 2007 17:21:53 +0000 Subject: [PATCH] fix comments --- .../internal/pdom/tests/GeneratePDOMApplicationTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/internal/pdom/tests/GeneratePDOMApplicationTest.java b/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/internal/pdom/tests/GeneratePDOMApplicationTest.java index a1d2b3a3859..e3444575db4 100644 --- a/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/internal/pdom/tests/GeneratePDOMApplicationTest.java +++ b/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/internal/pdom/tests/GeneratePDOMApplicationTest.java @@ -125,11 +125,11 @@ public class GeneratePDOMApplicationTest extends PDOMTestBase { String fid= wpdom.getProperty(IIndexFragment.PROPERTY_FRAGMENT_ID); assertNotNull(fid); - assertEquals(ACME_SDK_ID, fid); // check for default export id + assertEquals(ACME_SDK_ID, fid); // check for custom export id String sdkVer= wpdom.getProperty(SDK_VERSION); assertNotNull(sdkVer); - assertEquals("4.0.1", sdkVer); // check for default export id + assertEquals("4.0.1", sdkVer); // check for custom property value } public void testExternalExportProjectProvider_BadCmdLine1() throws Exception { @@ -190,7 +190,7 @@ public class GeneratePDOMApplicationTest extends PDOMTestBase { String fid= wpdom.getProperty(IIndexFragment.PROPERTY_FRAGMENT_ID); assertNotNull(fid); - assertEquals("hello.world", fid); // check for default export id + assertEquals("hello.world", fid); // check for id passed on command-line assertTrue(stateCount[0] == 2); }