summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtests/it_dbi.t8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/it_dbi.t b/tests/it_dbi.t
index 934e965..350c6e2 100755
--- a/tests/it_dbi.t
+++ b/tests/it_dbi.t
@@ -53,22 +53,22 @@ is(
is(
$record->select(array('ID IN' => array(2,3))),
2,
- "select with IN",
+ "select with IN"
);
is(
$record->select(array('ID NOT IN' => array(2,3))),
1,
- "select with NOT IN",
+ "select with NOT IN"
);
is(
$record->select(array('ID IN' => array())),
0,
- "select with empty IN",
+ "select with empty IN"
);
is(
$record->select(array('ID NOT IN' => array())),
3,
- "select with empty NOT IN",
+ "select with empty NOT IN"
);
it_dbi::createclass(array('table' => "it_dbi_test", 'forcecreate' => true));