diff --git a/testing/go/dolt_tables_test.go b/testing/go/dolt_tables_test.go index 936e11eb57..b7de7da181 100755 --- a/testing/go/dolt_tables_test.go +++ b/testing/go/dolt_tables_test.go @@ -2096,7 +2096,11 @@ func TestUserSpaceDoltTables(t *testing.T) { }, }, { - Query: "DROP VIEW newschema.testView", + Query: "DROP VIEW IF EXISTS noexist.testView", + Expected: []sql.Row{}, + }, + { + Query: "DROP VIEW IF EXISTS newschema.testView", Expected: []sql.Row{}, }, {