Skip to content

Commit

Permalink
This fixed code review issue
Browse files Browse the repository at this point in the history
  • Loading branch information
fsfsx committed Aug 22, 2023
1 parent 5e8d957 commit b2ed945
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion table_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ func TestDeleteTable(t *testing.T) {
assert.NoError(t, f.DeleteTable("Table2"))
assert.NoError(t, f.DeleteTable("Table1"))
// Test delete table with invalid table name
assert.EqualError(t, f.DeleteTable("Table 1"), newNoExistTableError("Table 1").Error())
assert.EqualError(t, f.DeleteTable("Table 1"), newInvalidNameError("Table 1").Error())
// Test delete table with no exist table name
assert.EqualError(t, f.DeleteTable("Table"), newNoExistTableError("Table").Error())
// Test delete table with unsupported charset
Expand Down

0 comments on commit b2ed945

Please sign in to comment.