diff options
author | James Moger <james.moger@gmail.com> | 2011-12-13 15:24:43 -0500 |
---|---|---|
committer | James Moger <james.moger@gmail.com> | 2011-12-13 15:24:43 -0500 |
commit | 8e7ccd33d586bdea3fea1f606874deeaf7b9884f (patch) | |
tree | be03538a50ef79079594603bf246f5519aed6857 /tests/com/iciql/test/JoinTest.java | |
parent | 5c18f339dba21dd10eebc728f7d6e85bba940c7c (diff) | |
download | iciql-0.7.5.tar.gz iciql-0.7.5.zip |
Corrected performance regression. Tweaked dynamic query results.v0.7.5
Diffstat (limited to 'tests/com/iciql/test/JoinTest.java')
-rw-r--r-- | tests/com/iciql/test/JoinTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/com/iciql/test/JoinTest.java b/tests/com/iciql/test/JoinTest.java index 3d72ab8..07de098 100644 --- a/tests/com/iciql/test/JoinTest.java +++ b/tests/com/iciql/test/JoinTest.java @@ -39,7 +39,7 @@ public class JoinTest { @Before public void setup() { db = IciqlSuite.openNewDb(); - + db.insertAll(UserId.getList()); db.insertAll(UserNote.getList()); } @@ -64,7 +64,7 @@ public class JoinTest { }); assertEquals(3, notes.size()); } - + @Test public void testJoin() throws Exception { final UserId u = new UserId(); |