Skip to content

Commit

Permalink
Fix test.
Browse files Browse the repository at this point in the history
  • Loading branch information
Miles-Garnsey committed Aug 24, 2023
1 parent 660c40f commit 91a928a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,4 @@ public int hashCode() {
+ Objects.hashCode(repairParallelism)
+ Objects.hashCode(repairThreadCount);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -1651,7 +1651,11 @@ public void testRepair() throws Exception {
eq("test_ks"),
eq(null),
eq(true),
eq(false));
eq(false),
eq(Optional.empty()),
eq(Optional.empty()),
eq(Optional.empty()),
eq(Optional.empty()));
}

@Test
Expand Down Expand Up @@ -1688,9 +1692,9 @@ public void testRepairAsync() throws Exception {
any(),
eq("CALL NodeOps.repair(?, ?, ?, ?, ?, ?, ?, ?)"),
eq("test_ks"),
eq(Optional.empty()),
eq(Optional.empty()),
eq(Optional.empty()),
eq(null),
eq(true),
eq(true),
eq(Optional.empty()),
eq(Optional.empty()),
eq(Optional.empty()),
Expand Down Expand Up @@ -2116,4 +2120,4 @@ MockHttpResponse invoke(HttpRequest request) {
return response;
}
}
}
}

0 comments on commit 91a928a

Please sign in to comment.