We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fb1df3 commit 1c2653fCopy full SHA for 1c2653f
1 file changed
sqlite-wasm/test/e2e.js
@@ -182,7 +182,7 @@
182
'SELECT hash FROM dbmem_content WHERE context IS NULL LIMIT 1;',
183
);
184
const before = execScalar('SELECT COUNT(*) FROM dbmem_content;');
185
- execScalar(`SELECT memory_delete(${hash});`);
+ execScalar(`SELECT memory_delete('${hash}');`);
186
const after = execScalar('SELECT COUNT(*) FROM dbmem_content;');
187
if (after !== before - 1)
188
throw new Error(`expected ${before - 1}, got ${after}`);
0 commit comments