aboutsummaryrefslogtreecommitdiff
path: root/test/json102.test
diff options
context:
space:
mode:
Diffstat (limited to 'test/json102.test')
-rw-r--r--test/json102.test6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/json102.test b/test/json102.test
index f40580da4..a4d88dbea 100644
--- a/test/json102.test
+++ b/test/json102.test
@@ -18,7 +18,11 @@
set testdir [file dirname $argv0]
source $testdir/tester.tcl
-load_static_extension db json
+ifcapable !json1 {
+ finish_test
+ return
+}
+
do_execsql_test json102-100 {
SELECT json_object('ex','[52,3.14159]');
} {{{"ex":"[52,3.14159]"}}}