Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hzxa21 committed Sep 12, 2023
1 parent 00a5e9a commit bd980c2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/storage/hummock_test/src/state_store_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -912,7 +912,7 @@ async fn test_write_anytime_inner(
.iter(
(
Bound::Included(gen_key_from_str(VirtualNode::ZERO, "aa")),
Bound::Included(gen_key_from_str(VirtualNode::ZERO, "bb")),
Bound::Included(gen_key_from_str(VirtualNode::ZERO, "cc")),
),
epoch,
ReadOptions {
Expand Down
8 changes: 4 additions & 4 deletions src/storage/hummock_test/src/sync_point_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -368,8 +368,8 @@ async fn test_syncpoints_get_in_delete_range_boundary() {
.unwrap();
local
.flush(vec![(
Bound::Included(Bytes::from(b"ggg".as_slice())),
Bound::Excluded(Bytes::from(b"hhh".as_slice())),
Bound::Included(Bytes::from(b"\0\0ggg".as_slice())),
Bound::Excluded(Bytes::from(b"\0\0hhh".as_slice())),
)])
.await
.unwrap();
Expand Down Expand Up @@ -398,8 +398,8 @@ async fn test_syncpoints_get_in_delete_range_boundary() {
.unwrap();
local
.flush(vec![(
Bound::Included(Bytes::from(b"jjj".as_slice())),
Bound::Excluded(Bytes::from(b"kkk".as_slice())),
Bound::Included(Bytes::from(b"\0\0jjj".as_slice())),
Bound::Excluded(Bytes::from(b"\0\0kkk".as_slice())),
)])
.await
.unwrap();
Expand Down

0 comments on commit bd980c2

Please sign in to comment.