Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ats.test/src/org/eclipse/osee/ats/util/NavigateTestUtil.java')
-rw-r--r--plugins/org.eclipse.osee.ats.test/src/org/eclipse/osee/ats/util/NavigateTestUtil.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/plugins/org.eclipse.osee.ats.test/src/org/eclipse/osee/ats/util/NavigateTestUtil.java b/plugins/org.eclipse.osee.ats.test/src/org/eclipse/osee/ats/util/NavigateTestUtil.java
index a3af8256045..2a7f680d18a 100644
--- a/plugins/org.eclipse.osee.ats.test/src/org/eclipse/osee/ats/util/NavigateTestUtil.java
+++ b/plugins/org.eclipse.osee.ats.test/src/org/eclipse/osee/ats/util/NavigateTestUtil.java
@@ -115,8 +115,6 @@ public final class NavigateTestUtil {
public static void compare(int expectedNumOfType, int actualNumOfType, String expectedStr) {
if (expectedNumOfType != actualNumOfType) {
OseeLog.log(AtsPlugin.class, Level.SEVERE, expectedStr, null);
- } else {
- OseeLog.log(AtsPlugin.class, Level.INFO, expectedStr);
}
Assert.assertTrue(expectedStr, actualNumOfType == expectedNumOfType);
}
@@ -124,8 +122,6 @@ public final class NavigateTestUtil {
public static void compare(boolean expectedCond, boolean actualCond, String expectedStr) {
if (expectedCond != actualCond) {
OseeLog.log(AtsPlugin.class, Level.SEVERE, expectedStr, null);
- } else {
- OseeLog.log(AtsPlugin.class, Level.INFO, expectedStr);
}
Assert.assertTrue(expectedStr, expectedCond == actualCond);
}

Back to the top