Use dictionaries instead of properties.
git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1520900 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/ipojo/runtime/core-it/ipojo-core-configuration-admin-test/src/test/java/org/apache/felix/ipojo/runtime/core/TestUpdated.java b/ipojo/runtime/core-it/ipojo-core-configuration-admin-test/src/test/java/org/apache/felix/ipojo/runtime/core/TestUpdated.java
index 13c0434..56f602e 100644
--- a/ipojo/runtime/core-it/ipojo-core-configuration-admin-test/src/test/java/org/apache/felix/ipojo/runtime/core/TestUpdated.java
+++ b/ipojo/runtime/core-it/ipojo-core-configuration-admin-test/src/test/java/org/apache/felix/ipojo/runtime/core/TestUpdated.java
@@ -25,6 +25,8 @@
import org.osgi.service.cm.Configuration;
import java.io.IOException;
+import java.util.Dictionary;
+import java.util.Hashtable;
import java.util.Properties;
import static junit.framework.Assert.assertEquals;
@@ -38,7 +40,7 @@
@Test
public void testNumberOfUpdatedCalls() throws IOException {
- Properties props = new Properties();
+ Dictionary<String, Object> props = new Hashtable<String, Object>();
props.put("message", "message");
props.put("propagated", "propagated");
props.put(".private", "wow");
@@ -77,7 +79,7 @@
@Test
public void testNumberOfUpdatedCallsWithManagedService() throws IOException {
- Properties props = new Properties();
+ Dictionary<String, Object> props = new Hashtable<String, Object>();
props.put("message", "message");
props.put("propagated", "propagated");
props.put(".private", "wow");