aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJames Moger <james.moger@gmail.com>2011-12-13 15:24:43 -0500
committerJames Moger <james.moger@gmail.com>2011-12-13 15:24:43 -0500
commit8e7ccd33d586bdea3fea1f606874deeaf7b9884f (patch)
treebe03538a50ef79079594603bf246f5519aed6857 /tests
parent5c18f339dba21dd10eebc728f7d6e85bba940c7c (diff)
downloadiciql-8e7ccd33d586bdea3fea1f606874deeaf7b9884f.tar.gz
iciql-8e7ccd33d586bdea3fea1f606874deeaf7b9884f.zip
Corrected performance regression. Tweaked dynamic query results.v0.7.5
Diffstat (limited to 'tests')
-rw-r--r--tests/com/iciql/test/JoinTest.java4
-rw-r--r--tests/com/iciql/test/SamplesTest.java2
2 files changed, 2 insertions, 4 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();
diff --git a/tests/com/iciql/test/SamplesTest.java b/tests/com/iciql/test/SamplesTest.java
index 5c7ffc8..5179d79 100644
--- a/tests/com/iciql/test/SamplesTest.java
+++ b/tests/com/iciql/test/SamplesTest.java
@@ -40,7 +40,6 @@ import org.junit.Test;
import com.iciql.Db;
import com.iciql.Filter;
import com.iciql.Iciql.IQColumn;
-import com.iciql.Iciql.IQFunction;
import com.iciql.test.models.ComplexObject;
import com.iciql.test.models.Customer;
import com.iciql.test.models.Order;
@@ -409,7 +408,6 @@ public class SamplesTest {
*/
public static class ProductGroup {
public String category;
- @IQFunction
public Long productCount;
public String toString() {