diff --git a/server/admin/internal/modules/appconfig/service_test.go b/server/admin/internal/modules/appconfig/service_test.go index e378e6b4..11c3f2b3 100644 --- a/server/admin/internal/modules/appconfig/service_test.go +++ b/server/admin/internal/modules/appconfig/service_test.go @@ -16,10 +16,10 @@ func TestH5AppScopeMigrationKeepsAppAgnosticLegacyBaseline(t *testing.T) { } sqlText := string(body) for _, snippet := range []string{ - "app_code VARCHAR(32) NOT NULL DEFAULT ''", - "is_deleted BOOLEAN NOT NULL DEFAULT FALSE", - "DROP INDEX uk_admin_app_configs_group_key", - "uk_admin_app_config_app_group_key (app_code, `group`, `key`)", + "app_code VARCHAR(32) NOT NULL DEFAULT ''", + "is_deleted BOOLEAN NOT NULL DEFAULT FALSE", + "DROP INDEX uk_admin_app_configs_group_key", + "uk_admin_app_config_app_group_key (app_code, `group`, `key`)", } { if !strings.Contains(sqlText, snippet) { t.Fatalf("h5 app scope migration missing %q", snippet)