diff options
Diffstat (limited to 'ext/wasm/tester1.c-pp.js')
-rw-r--r-- | ext/wasm/tester1.c-pp.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/wasm/tester1.c-pp.js b/ext/wasm/tester1.c-pp.js index 5d24daf15..1fcc9ae7c 100644 --- a/ext/wasm/tester1.c-pp.js +++ b/ext/wasm/tester1.c-pp.js @@ -3190,9 +3190,10 @@ globalThis.sqlite3InitModule = sqlite3InitModule; T.assert(cErr === await inst(conf2).catch(e=>e), "Init result is cached even if it failed"); - /* Ensure that the forceReinitIfFailed fallback bypasses the VFS init cache... */ + /* Ensure that the forceReinitIfPreviouslyFailed fallback bypasses + the VFS init cache... */ cErr = u3 = undefined; - conf2.forceReinitIfFailed = true; + conf2.forceReinitIfPreviouslyFailed = true; conf2.verbosity = 3; const P3b = await inst(conf2).then(u=>u3 = u).catch((e)=>cErr=e); T.assert(undefined === cErr) |