Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ats.test/src/org/eclipse/osee/ats/test/editor/SMAPrintTest.java')
-rw-r--r--plugins/org.eclipse.osee.ats.test/src/org/eclipse/osee/ats/test/editor/SMAPrintTest.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/org.eclipse.osee.ats.test/src/org/eclipse/osee/ats/test/editor/SMAPrintTest.java b/plugins/org.eclipse.osee.ats.test/src/org/eclipse/osee/ats/test/editor/SMAPrintTest.java
index a8413eaf576..aac4d289fda 100644
--- a/plugins/org.eclipse.osee.ats.test/src/org/eclipse/osee/ats/test/editor/SMAPrintTest.java
+++ b/plugins/org.eclipse.osee.ats.test/src/org/eclipse/osee/ats/test/editor/SMAPrintTest.java
@@ -49,14 +49,14 @@ public class SMAPrintTest {
SMAPrint smaPrint = new SMAPrint(teamArt);
XResultData resultData = smaPrint.getResultData();
Assert.assertNotNull(resultData);
- // Make sure it's a reasonable length
+ // Make sure it's a reasonable length
Assert.assertTrue(resultData.getReport("report").getManipulatedHtml().length() > 7000);
PeerToPeerReviewArtifact peerArt = (PeerToPeerReviewArtifact) ReviewManager.getReviews(teamArt).iterator().next();
smaPrint = new SMAPrint(peerArt);
resultData = smaPrint.getResultData();
Assert.assertNotNull(resultData);
- // Make sure it's a reasonable length
+ // Make sure it's a reasonable length
Assert.assertTrue(resultData.getReport("report").getManipulatedHtml().length() > 3500);
TaskArtifact taskArt = null;
@@ -69,7 +69,7 @@ public class SMAPrintTest {
smaPrint = new SMAPrint(taskArt);
resultData = smaPrint.getResultData();
Assert.assertNotNull(resultData);
- // Make sure it's a reasonable length
+ // Make sure it's a reasonable length
Assert.assertTrue(resultData.getReport("report").getManipulatedHtml().length() > 2700);
teamArt =
@@ -80,7 +80,7 @@ public class SMAPrintTest {
smaPrint = new SMAPrint(decArt);
resultData = smaPrint.getResultData();
Assert.assertNotNull(resultData);
- // Make sure it's a reasonable length
+ // Make sure it's a reasonable length
Assert.assertTrue(resultData.getReport("report").getManipulatedHtml().length() > 2900);
TestUtil.severeLoggingEnd(monitorLog);

Back to the top