From be11fa008570326ca0ba76152cda1720934c3070 Mon Sep 17 00:00:00 2001
From: Christian Schneider
Date: Tue, 17 Feb 2009 13:51:20 +0000
Subject: Convert all tests back to old syntax

---
 tests/it_dbi.t | 8 ++++----
 1 file 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));
-- 
cgit v1.2.3