Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.x.server.integration.tests/src/org/eclipse/osee/x/server/integration/tests/performance/AccountClientTest.java')
-rw-r--r--plugins/org.eclipse.osee.x.server.integration.tests/src/org/eclipse/osee/x/server/integration/tests/performance/AccountClientTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.x.server.integration.tests/src/org/eclipse/osee/x/server/integration/tests/performance/AccountClientTest.java b/plugins/org.eclipse.osee.x.server.integration.tests/src/org/eclipse/osee/x/server/integration/tests/performance/AccountClientTest.java
index ee7cea4d322..f26fe988238 100644
--- a/plugins/org.eclipse.osee.x.server.integration.tests/src/org/eclipse/osee/x/server/integration/tests/performance/AccountClientTest.java
+++ b/plugins/org.eclipse.osee.x.server.integration.tests/src/org/eclipse/osee/x/server/integration/tests/performance/AccountClientTest.java
@@ -73,7 +73,7 @@ public class AccountClientTest {
email = String.format("email_%s_%s@hello.com", methodName, value);
active = true;
- prefs = new HashMap<String, String>();
+ prefs = new HashMap<>();
prefs.put("a", "1");
prefs.put("b", "2");
prefs.put("c", "3");
@@ -187,7 +187,7 @@ public class AccountClientTest {
@Test
public void test_F_SetAccountPreferences() {
- Map<String, String> newPrefs = new HashMap<String, String>();
+ Map<String, String> newPrefs = new HashMap<>();
newPrefs.put("r", "7");
newPrefs.put("s", "8");
newPrefs.put("t", "9");

Back to the top