Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordonald.g.dunne2015-12-23 19:54:49 +0000
committerRyan D. Brooks2015-12-23 19:54:49 +0000
commit82b1c027fa407dcdeaae4676c91681e3cdd9fa6c (patch)
tree2c235ec876df29269b683ed69ecf2ef432375ec9 /plugins/org.eclipse.osee.define.test
parentad0d071519a7e37e8d6f81906c4c9690a3de3a31 (diff)
downloadorg.eclipse.osee-82b1c027fa407dcdeaae4676c91681e3cdd9fa6c.tar.gz
org.eclipse.osee-82b1c027fa407dcdeaae4676c91681e3cdd9fa6c.tar.xz
org.eclipse.osee-82b1c027fa407dcdeaae4676c91681e3cdd9fa6c.zip
refinement: Re-Organize, Format and Cleanup source
Diffstat (limited to 'plugins/org.eclipse.osee.define.test')
-rw-r--r--plugins/org.eclipse.osee.define.test/src/org/eclipse/osee/define/traceability/CodeUnitAnnotationUtilityTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.define.test/src/org/eclipse/osee/define/traceability/CodeUnitAnnotationUtilityTest.java b/plugins/org.eclipse.osee.define.test/src/org/eclipse/osee/define/traceability/CodeUnitAnnotationUtilityTest.java
index 6b45f145d6b..54f511db37e 100644
--- a/plugins/org.eclipse.osee.define.test/src/org/eclipse/osee/define/traceability/CodeUnitAnnotationUtilityTest.java
+++ b/plugins/org.eclipse.osee.define.test/src/org/eclipse/osee/define/traceability/CodeUnitAnnotationUtilityTest.java
@@ -66,10 +66,10 @@ public class CodeUnitAnnotationUtilityTest {
@Test
public void testRemoveTraceAnnotation() {
CodeUnitTagger util = CodeUnitTagger.getInstance();
- // Check that removeSourceTag doesn't add in ObjectId("TEST") if it wasnt there to begin with
+ // Check that removeSourceTag doesn't add in ObjectId("TEST") if it wasnt there to begin with
String result = util.removeSourceTag(getClassNoAnnotation()).toString();
Assert.assertFalse(result.contains("-- ObjectId(\"TEST\")"));
- // Check that removeSourceTag returns ObjectId("TEST") is no longer there
+ // Check that removeSourceTag returns ObjectId("TEST") is no longer there
result = util.removeSourceTag(getClassWithAnnotation()).toString();
Assert.assertFalse(result.contains("-- ObjectId(\"TEST\")"));
}

Back to the top