diff options
Diffstat (limited to 'test/blob.test')
-rw-r--r-- | test/blob.test | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/blob.test b/test/blob.test index c5251e954..4e49f3864 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.3 2004/11/03 13:59:06 drh Exp $ +# $Id: blob.test,v 1.4 2005/08/23 11:17:59 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl @@ -30,19 +30,19 @@ proc bin_to_hex {blob} { # Simplest possible case. Specify a blob literal do_test blob-1.0 { - set blob [execsql {SELECT X'01020304'}] + set blob [execsql {SELECT X'01020304';}] bin_to_hex [lindex $blob 0] } {01020304} do_test blob-1.1 { - set blob [execsql {SELECT x'ABCDEF'}] + set blob [execsql {SELECT x'ABCDEF';}] bin_to_hex [lindex $blob 0] } {ABCDEF} do_test blob-1.2 { - set blob [execsql {SELECT x''}] + set blob [execsql {SELECT x'';}] bin_to_hex [lindex $blob 0] } {} do_test blob-1.3 { - set blob [execsql {SELECT x'abcdEF12'}] + set blob [execsql {SELECT x'abcdEF12';}] bin_to_hex [lindex $blob 0] } {ABCDEF12} |