Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ats.client.integration.tests/src/org/eclipse/osee/ats/client/integration/tests/util/NavigateTestUtil.java')
-rw-r--r--plugins/org.eclipse.osee.ats.client.integration.tests/src/org/eclipse/osee/ats/client/integration/tests/util/NavigateTestUtil.java12
1 files changed, 4 insertions, 8 deletions
diff --git a/plugins/org.eclipse.osee.ats.client.integration.tests/src/org/eclipse/osee/ats/client/integration/tests/util/NavigateTestUtil.java b/plugins/org.eclipse.osee.ats.client.integration.tests/src/org/eclipse/osee/ats/client/integration/tests/util/NavigateTestUtil.java
index 4f5b2678ca2..eda6fff26e9 100644
--- a/plugins/org.eclipse.osee.ats.client.integration.tests/src/org/eclipse/osee/ats/client/integration/tests/util/NavigateTestUtil.java
+++ b/plugins/org.eclipse.osee.ats.client.integration.tests/src/org/eclipse/osee/ats/client/integration/tests/util/NavigateTestUtil.java
@@ -32,11 +32,8 @@ public final class NavigateTestUtil {
private static boolean ensurePopulatedRanOnce = false;
- public static final String[] expectedErrorCols1 = {
- "ats.column.type",
- "ats.column.team",
- "ats.column.initWf",
- "ats.column.origWf"};
+ public static final String[] expectedErrorCols1 =
+ {"ats.column.type", "ats.column.team", "ats.column.initWf", "ats.column.origWf"};
public static final String[] expectedErrorCols2 = {
"ats.column.state",
@@ -95,9 +92,8 @@ public final class NavigateTestUtil {
public static void testExpectedVersusActual(String name, Collection<? extends Artifact> arts, IArtifactType artType, int expectedNumOfType) {
int actualNumOfType = numOfType(arts, artType);
- String expectedStr =
- String.format("\"%s\" Expected: %s Found: %s Of Type: %s", name, expectedNumOfType, actualNumOfType,
- artType);
+ String expectedStr = String.format("\"%s\" Expected: %s Found: %s Of Type: %s", name, expectedNumOfType,
+ actualNumOfType, artType);
compare(expectedNumOfType, actualNumOfType, expectedStr);
}

Back to the top