Skip to content

Commit fd8a9e0

Browse files
author
prasanth_j
committed
Fix bool assert in storage tests
1 parent 3ebc246 commit fd8a9e0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

backend/storage/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1488,7 +1488,7 @@ mod tests {
14881488
.notifications
14891489
.get("notif-1")
14901490
.expect("notification");
1491-
assert_eq!(notification.read, true);
1491+
assert!(notification.read);
14921492
assert!(recovered.command_results.contains_key("cmd-notify-2"));
14931493
let _ = fs::remove_dir_all(dir);
14941494
}

0 commit comments

Comments
 (0)