From a3a5af9fb93c825d1b7b95689a4e6f87b1b35813 Mon Sep 17 00:00:00 2001 From: Mattias Jonsson Date: Wed, 12 Oct 2022 21:18:32 +0200 Subject: [PATCH] Fixed test case --- ddl/failtest/fail_db_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ddl/failtest/fail_db_test.go b/ddl/failtest/fail_db_test.go index baa338239a4f1..bde5e9b1b9569 100644 --- a/ddl/failtest/fail_db_test.go +++ b/ddl/failtest/fail_db_test.go @@ -529,7 +529,7 @@ func TestModifyColumn(t *testing.T) { tk.MustExec("insert into t5 values (1,1),(2,2),(3,3),(4,4),(5,5);") tk.MustExec("alter table t5 modify a int not null;") - tk.MustExec("drop table t, t1, t2, t3, t4, t5") + tk.MustExec("drop table t, t2, t3, t4, t5") } func TestPartitionAddPanic(t *testing.T) {