Skip to content

Commit

Permalink
Fix valkey test_save
Browse files Browse the repository at this point in the history
  • Loading branch information
rukai committed Nov 25, 2024
1 parent 63a8dcd commit e658ebc
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 e658ebc

Please sign in to comment.