Fix a datatype in trigger6.test that changed due to the previous check-in. (CVS 2454)

FossilOrigin-Name: c2af7d2c947bcec507087cc3a1e5b21e6322e4cd
This commit is contained in:
drh
2005-05-05 11:04:50 +00:00
parent c7f269d551
commit 0405a34d11
3 changed files with 10 additions and 10 deletions
+3 -3
View File
@@ -17,7 +17,7 @@
# that the same evaluation occurs for the actual INSERT/UPDATE and
# for the NEW.* fields of any triggers that fire.
#
# $Id: trigger6.test,v 1.1 2004/12/07 15:41:50 drh Exp $
# $Id: trigger6.test,v 1.2 2005/05/05 11:04:50 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@@ -60,12 +60,12 @@ do_test trigger6-1.3 {
INSERT INTO t1 VALUES(2,counter(2,3)+4);
SELECT * FROM t1;
}
} {2 6.0}
} {2 6}
do_test trigger6-1.4 {
execsql {
SELECT * FROM log;
}
} {1 2 6.0}
} {1 2 6}
do_test trigger6-1.5 {
execsql {
DELETE FROM log;