Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
deardeng committed May 23, 2024
1 parent 6d8d74f commit 15b7664
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,10 @@ suite('test_drop_clone_tablet_path_race') {
if (result.size() == size) {
def version = result[0].Version
def state = result[0].State
result.forEach {
Assert.assertEquals(it.Version, version)
Assert.assertEquals(it.State, state)
succ = result.every { it.Version.equals(version) && it.State.equals(state) }
if (succ) {
break
}
succ = true
break
}
sleep(1000)
}
Expand Down

0 comments on commit 15b7664

Please sign in to comment.