test_open_existing fix

This commit is contained in:
Pere Diaz Bou
2025-03-12 16:06:52 +01:00
parent e65d76f51f
commit f7c8d4cc69

View File

@@ -1128,7 +1128,7 @@ mod tests {
unsafe {
let mut db = ptr::null_mut();
assert_eq!(
sqlite3_open(b"../../testing/testing.db\0".as_ptr() as *const i8, &mut db),
sqlite3_open(b"../testing/testing.db\0".as_ptr() as *const i8, &mut db),
SQLITE_OK
);
assert_eq!(sqlite3_close(db), SQLITE_OK);