Skip to content

Commit

Permalink
fix TestSkipNotExistsTable after `code: 473, message: Possible deadlo…
Browse files Browse the repository at this point in the history
…ck avoided`
  • Loading branch information
Slach committed Jan 22, 2024
1 parent 35c9114 commit 4efb08a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1042,7 +1042,7 @@ func TestSkipNotExistsTable(t *testing.T) {
pause += (firstTime.Sub(startTime) + freezeTime.Sub(firstTime)).Nanoseconds()
}
if err != nil {
if !strings.Contains(out, "no tables for backup") {
if !strings.Contains(out, "no tables for backup") && !strings.Contains(out, "code: 473, message: Possible deadlock avoided") {
assert.NoError(t, err)
}
}
Expand Down

0 comments on commit 4efb08a

Please sign in to comment.