diff options
Diffstat (limited to 'test/types3.test')
-rw-r--r-- | test/types3.test | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/types3.test b/test/types3.test index 0ff346ce2..457ee6d68 100644 --- a/test/types3.test +++ b/test/types3.test @@ -18,10 +18,9 @@ source $testdir/tester.tcl # A variable with only a string representation comes in as TEXT do_test types3-1.1 { - set V {} - append V x + set V [format %s xxxxx] concat [tcl_variable_type V] [execsql {SELECT typeof(:V)}] -} {string text} +} {text} # A variable with an integer representation comes in as INTEGER do_test types3-1.2 { |