Fix tests to account for built-in extensions

This commit is contained in:
PThorpe92 2025-01-19 22:11:49 -05:00
parent c1152670a3
commit cc63aac305
No known key found for this signature in database
GPG key ID: 66DB3FBACBDD05CC
5 changed files with 23 additions and 35 deletions

View file

@ -139,6 +139,7 @@ impl Database {
_shared_wal: shared_wal.clone(),
syms,
};
#[cfg(not(target_family = "wasm"))]
if let Err(e) = db.register_builtins() {
return Err(LimboError::ExtensionError(e));
}