Skip to content

Commit

Permalink
Fix valkey test_save (#1838)
Browse files Browse the repository at this point in the history
  • Loading branch information
rukai authored Nov 26, 2024
1 parent de3658e commit a6a4b1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shotover-proxy/tests/valkey_int_tests/basic_driver_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ async fn test_save(connection: &mut Connection) {
"expected lastsave2 > 0, but lastsave was {lastsave2}"
);
assert!(
lastsave2 > lastsave1,
"expected lastsave2 > lastsave1, but was {lastsave2} > {lastsave1}"
lastsave2 >= lastsave1,
"expected lastsave2 >= lastsave1, but was {lastsave2} > {lastsave1}"
);
}

Expand Down

0 comments on commit a6a4b1c

Please sign in to comment.