Skip to content

Commit

Permalink
domain: update failpoint path
Browse files Browse the repository at this point in the history
  • Loading branch information
zimulala committed Jun 13, 2019
1 parent 6b069c3 commit cd2fbd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions domain/domain_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ func TestInfo(t *testing.T) {
}

// Test the scene where syncer.Done() gets the information.
err = failpoint.Enable("github.com/pingcap/tidb/ddl/ErrorMockSessionDone", `return(true)`)
err = failpoint.Enable("github.com/pingcap/tidb/ddl/util/ErrorMockSessionDone", `return(true)`)
if err != nil {
t.Fatal(err)
}
Expand All @@ -148,7 +148,7 @@ func TestInfo(t *testing.T) {
if !syncerStarted {
t.Fatal("start syncer failed")
}
err = failpoint.Disable("github.com/pingcap/tidb/ddl/ErrorMockSessionDone")
err = failpoint.Disable("github.com/pingcap/tidb/ddl/util/ErrorMockSessionDone")
if err != nil {
t.Fatal(err)
}
Expand Down

0 comments on commit cd2fbd8

Please sign in to comment.