Skip to content

Commit

Permalink
make lint check happy
Browse files Browse the repository at this point in the history
  • Loading branch information
tiancaiamao committed Apr 19, 2024
1 parent 2c88a61 commit e931f23
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pkg/ddl/db_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3044,10 +3044,11 @@ func TestIssue52680(t *testing.T) {
sql string
expect meta.AutoIDGroup
}{
{"", meta.AutoIDGroup{0, 4000, 0}},
{"drop table issue52680", meta.AutoIDGroup{0, 0, 0}},
{"recover table issue52680", meta.AutoIDGroup{0, 4000, 0}},
{sql: "", expect: meta.AutoIDGroup{0, 4000, 0}},
{sql: "drop table issue52680", expect: meta.AutoIDGroup{0, 0, 0}},
{sql: "recover table issue52680", expect: meta.AutoIDGroup{0, 4000, 0}},
}

for _, step := range testSteps {
if step.sql != "" {
tk.MustExec(step.sql)
Expand Down

0 comments on commit e931f23

Please sign in to comment.