summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Ahlborn <jtahlborn@yahoo.com>2013-10-12 12:38:17 +0000
committerJames Ahlborn <jtahlborn@yahoo.com>2013-10-12 12:38:17 +0000
commit2161dac9a5904e60f1c0d24ef3c73447238e9ddc (patch)
treebd61d7b8dbfdcbedeca13a66252910d4b5f53bef
parent4ecff29629eb503ac843f575b52e43e2e807e4df (diff)
downloadjackcess-2161dac9a5904e60f1c0d24ef3c73447238e9ddc.tar.gz
jackcess-2161dac9a5904e60f1c0d24ef3c73447238e9ddc.zip
update unit tests to new propertymaps constructor
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@818 f203690c-595d-4dc9-a70b-905162fa7fd2
-rw-r--r--src/test/java/com/healthmarketscience/jackcess/PropertiesTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/java/com/healthmarketscience/jackcess/PropertiesTest.java b/src/test/java/com/healthmarketscience/jackcess/PropertiesTest.java
index 2670ae7..e71252e 100644
--- a/src/test/java/com/healthmarketscience/jackcess/PropertiesTest.java
+++ b/src/test/java/com/healthmarketscience/jackcess/PropertiesTest.java
@@ -48,7 +48,7 @@ public class PropertiesTest extends TestCase
public void testPropertyMaps() throws Exception
{
- PropertyMaps maps = new PropertyMaps(10, null);
+ PropertyMaps maps = new PropertyMaps(10, null, null);
assertTrue(maps.isEmpty());
assertEquals(0, maps.getSize());
assertFalse(maps.iterator().hasNext());
@@ -224,7 +224,7 @@ public class PropertiesTest extends TestCase
byte[] mapsBytes = maps.write();
PropertyMaps maps2 = ((DatabaseImpl)db).readProperties(
- mapsBytes, maps.getObjectId());
+ mapsBytes, maps.getObjectId(), null);
Iterator<PropertyMapImpl> iter = maps.iterator();
Iterator<PropertyMapImpl> iter2 = maps2.iterator();