aboutsummaryrefslogtreecommitdiff
path: root/weed/query/engine/postgresql_only_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'weed/query/engine/postgresql_only_test.go')
-rw-r--r--weed/query/engine/postgresql_only_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/query/engine/postgresql_only_test.go b/weed/query/engine/postgresql_only_test.go
index d98cab9f0..d40e81b11 100644
--- a/weed/query/engine/postgresql_only_test.go
+++ b/weed/query/engine/postgresql_only_test.go
@@ -67,7 +67,7 @@ func TestPostgreSQLOnlySupport(t *testing.T) {
if tc.shouldError {
// We expect this query to fail
if err == nil && result.Error == nil {
- t.Errorf("❌ Expected error for %s, but query succeeded", tc.desc)
+ t.Errorf("Expected error for %s, but query succeeded", tc.desc)
return
}
@@ -81,7 +81,7 @@ func TestPostgreSQLOnlySupport(t *testing.T) {
}
if !strings.Contains(errorText, tc.errorMsg) {
- t.Errorf("❌ Expected error containing '%s', got: %s", tc.errorMsg, errorText)
+ t.Errorf("Expected error containing '%s', got: %s", tc.errorMsg, errorText)
return
}
}