Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.jdk.core.test/src/org/eclipse/osee/framework/jdk/core/test/type/PropertyStoreWriterTest.java')
-rw-r--r--plugins/org.eclipse.osee.framework.jdk.core.test/src/org/eclipse/osee/framework/jdk/core/test/type/PropertyStoreWriterTest.java7
1 files changed, 5 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.framework.jdk.core.test/src/org/eclipse/osee/framework/jdk/core/test/type/PropertyStoreWriterTest.java b/plugins/org.eclipse.osee.framework.jdk.core.test/src/org/eclipse/osee/framework/jdk/core/test/type/PropertyStoreWriterTest.java
index 926ff1f02f5..8f27de2f81c 100644
--- a/plugins/org.eclipse.osee.framework.jdk.core.test/src/org/eclipse/osee/framework/jdk/core/test/type/PropertyStoreWriterTest.java
+++ b/plugins/org.eclipse.osee.framework.jdk.core.test/src/org/eclipse/osee/framework/jdk/core/test/type/PropertyStoreWriterTest.java
@@ -44,9 +44,12 @@ public class PropertyStoreWriterTest {
store.put("key6.5", "");
store.put("key7", new String[] {"entry1", "entry2", "entry3"});
store.put("key8", new String[] {"entry4", "entry5", "entry6"});
- nested = PropertyStoreTestUtil.createPropertyStore(System.getProperties());
+ nested =
+ PropertyStoreTestUtil.createPropertyStore(PropertyStoreTestUtil.convertPropertiesToMap(System.getProperties()));
nested.put("inner array 1", new String[] {"value1", "value2"});
- nested.put("inner store 1", PropertyStoreTestUtil.createPropertyStore(System.getProperties()));
+ nested.put(
+ "inner store 1",
+ PropertyStoreTestUtil.createPropertyStore(PropertyStoreTestUtil.convertPropertiesToMap(System.getProperties())));
store.put("key9", nested);
}

Back to the top