aboutsummaryrefslogtreecommitdiff
path: root/ext/wasm/testing1.js
diff options
context:
space:
mode:
authorstephan <stephan@noemail.net>2022-10-02 00:09:40 +0000
committerstephan <stephan@noemail.net>2022-10-02 00:09:40 +0000
commit193ee11fe1f7ce00ecb9c65dd95e4d0f779400e5 (patch)
tree89404944cc622672d1bd1b1ff8a21603cb55dc7b /ext/wasm/testing1.js
parentf064a3bbe450ba2d18a6daec6293302902887f8e (diff)
downloadsqlite-193ee11fe1f7ce00ecb9c65dd95e4d0f779400e5.tar.gz
sqlite-193ee11fe1f7ce00ecb9c65dd95e4d0f779400e5.zip
General internal cleanups in the oo1 API.
FossilOrigin-Name: f9db664f756f3707afcb5dce87f6d946625848f27ea84337af68de72d4ad6c6b
Diffstat (limited to 'ext/wasm/testing1.js')
-rw-r--r--ext/wasm/testing1.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/wasm/testing1.js b/ext/wasm/testing1.js
index ffe63c537..dd61ab281 100644
--- a/ext/wasm/testing1.js
+++ b/ext/wasm/testing1.js
@@ -354,7 +354,7 @@
T.assert(g64(pMin) === minMaxI64[0]).
assert(minMaxI64[0] === db.selectValue("select ?",g64(pMin))).
assert(minMaxI64[1] === db.selectValue("select ?",g64(pMax)));
- const rxRange = /out of range for int64/;
+ const rxRange = /out of range for storing as int64/;
T.mustThrowMatching(()=>{db.prepare("select ?").bind(minMaxI64[0] - BigInt(1))},
rxRange).
mustThrowMatching(()=>{db.prepare("select ?").bind(minMaxI64[1] + BigInt(1))},