From d9b37e659f99bd75aab3f56dd6c5c1b8f62ed062 Mon Sep 17 00:00:00 2001 From: chrislu Date: Tue, 28 Oct 2025 19:41:17 -0700 Subject: [PATCH] purge emojis --- weed/replication/sink/azuresink/azure_sink_test.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/weed/replication/sink/azuresink/azure_sink_test.go b/weed/replication/sink/azuresink/azure_sink_test.go index a144cdd95..89d54c1be 100644 --- a/weed/replication/sink/azuresink/azure_sink_test.go +++ b/weed/replication/sink/azuresink/azure_sink_test.go @@ -371,7 +371,7 @@ func TestAzureSinkIdempotentCreate(t *testing.T) { } else if *props.ContentLength != int64(len(testContent)) { t.Errorf("File size mismatch: expected %d, got %d", len(testContent), *props.ContentLength) } else { - t.Logf("✓ File created with correct size: %d bytes", *props.ContentLength) + t.Logf("File created with correct size: %d bytes", *props.ContentLength) } }) @@ -397,11 +397,11 @@ func TestAzureSinkIdempotentCreate(t *testing.T) { t.Fatalf("Failed to get blob properties after idempotent create: %v", err) } if props.ContentLength == nil || *props.ContentLength == 0 { - t.Errorf("❌ ZERO-BYTE BUG: File became empty after idempotent create! Expected %d bytes", len(testContent)) + t.Errorf("ZERO-BYTE BUG: File became empty after idempotent create! Expected %d bytes", len(testContent)) } else if *props.ContentLength < int64(len(testContent)) { t.Errorf("File lost content: expected at least %d bytes, got %d", len(testContent), *props.ContentLength) } else { - t.Logf("✓ File still has content after idempotent create: %d bytes", *props.ContentLength) + t.Logf("File still has content after idempotent create: %d bytes", *props.ContentLength) } }) @@ -427,9 +427,9 @@ func TestAzureSinkIdempotentCreate(t *testing.T) { t.Fatalf("Failed to get blob properties: %v", err) } if props.ContentLength == nil || *props.ContentLength == 0 { - t.Errorf("❌ File became empty after create with older mtime!") + t.Errorf("File became empty after create with older mtime!") } else { - t.Logf("✓ File preserved content despite older mtime: %d bytes", *props.ContentLength) + t.Logf("File preserved content despite older mtime: %d bytes", *props.ContentLength) } }) }