diff options
author | drh <drh@noemail.net> | 2009-04-28 18:00:27 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2009-04-28 18:00:27 +0000 |
commit | 8ad38a7d18b2b51e552381f24b58008107d82195 (patch) | |
tree | 574f5b98a3ecd5ff7f6e687b518e665ef0fe937c /test | |
parent | 0d59d17c41c87d0ae17bcc6d2697cad5c007b059 (diff) | |
download | sqlite-8ad38a7d18b2b51e552381f24b58008107d82195.tar.gz sqlite-8ad38a7d18b2b51e552381f24b58008107d82195.zip |
Fix an out-of-order test number in blob.test. Cosmetic change. No
changes to code. Ticket #3830. (CVS 6564)
FossilOrigin-Name: e855654283a23d903fd531162655a8c4fa01775b
Diffstat (limited to 'test')
-rw-r--r-- | test/blob.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/blob.test b/test/blob.test index 0021ddb51..b1aae381a 100644 --- a/test/blob.test +++ b/test/blob.test @@ -10,7 +10,7 @@ #*********************************************************************** # This file implements regression tests for SQLite library. # -# $Id: blob.test,v 1.7 2008/04/04 15:12:22 drh Exp $ +# $Id: blob.test,v 1.8 2009/04/28 18:00:27 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl @@ -137,7 +137,7 @@ do_test blob-3.1 { sqlite3_finalize $STMT db2 close } {} -do_test blob-2.3 { +do_test blob-3.2 { set blobs [execsql {SELECT * FROM t1}] set blobs2 [list] foreach b $blobs {lappend blobs2 [bin_to_hex $b]} |