Skip to content

Commit

Permalink
fix(storage): fix compile
Browse files Browse the repository at this point in the history
  • Loading branch information
Li0k committed Jul 16, 2024
1 parent 27f6186 commit 959a898
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/meta/src/hummock/manager/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2197,7 +2197,7 @@ async fn test_partition_level() {
.unwrap());

hummock_manager
.split_compaction_group(2, &[100])
.split_compaction_group(2, &[100], 0)
.await
.unwrap();
let current_version = hummock_manager.get_current_version().await;
Expand Down Expand Up @@ -2331,7 +2331,7 @@ async fn test_unregister_moved_table() {
.unwrap();

let new_group_id = hummock_manager
.split_compaction_group(2, &[100])
.split_compaction_group(2, &[100], 0)
.await
.unwrap();
assert_ne!(new_group_id, 2);
Expand Down

0 comments on commit 959a898

Please sign in to comment.