Skip to content

Commit b1a5d13

Browse files
committed
Fix exists test to match SirixResponse<()> return type
The exists() method now returns SirixResponse<()> instead of SirixResponse<bool>, so the test just needs to verify the call succeeds. https://claude.ai/code/session_01LgXiks4zqYLRVbkgmCNoGc
1 parent 0504074 commit b1a5d13

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

tests/sirix.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,6 @@ mod synchronous {
218218

219219
let exists_result = resource.exists();
220220
assert!(exists_result.is_ok());
221-
let exists = exists_result.unwrap().body;
222-
assert!(exists);
223221

224222
db.delete().unwrap();
225223
}

0 commit comments

Comments
 (0)