Skip to content

Commit

Permalink
fix warn
Browse files Browse the repository at this point in the history
Signed-off-by: Little-Wallace <[email protected]>
  • Loading branch information
Little-Wallace committed Mar 7, 2024
1 parent 98ce809 commit b6a4b51
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 @@ -265,7 +265,7 @@ async fn test_hummock_compaction_task() {
// Finish the task and succeed.

assert!(hummock_manager
.report_compact_task(compact_task.task_id, TaskStatus::Success, vec![], None,)
.report_compact_task(compact_task.task_id, TaskStatus::Success, vec![], None)
.await
.unwrap());
}
Expand Down Expand Up @@ -1972,7 +1972,7 @@ async fn test_compaction_task_expiration_due_to_split_group() {
let version_1 = hummock_manager.get_current_version().await;
// compaction_task.task_status = TaskStatus::Success.into();
assert!(!hummock_manager
.report_compact_task(compaction_task.task_id, TaskStatus::Success, vec![], None,)
.report_compact_task(compaction_task.task_id, TaskStatus::Success, vec![], None)
.await
.unwrap());
let version_2 = hummock_manager.get_current_version().await;
Expand Down

0 comments on commit b6a4b51

Please sign in to comment.