From 96e8421d1d0cbc17adbfdcc09f3ca28fa959342a Mon Sep 17 00:00:00 2001 From: Jenna Goldstrich Date: Tue, 18 Jun 2024 14:47:44 -0700 Subject: [PATCH] Fix one incorrect test failure message --- internal/hcp/registry/types.bucket_service_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/hcp/registry/types.bucket_service_test.go b/internal/hcp/registry/types.bucket_service_test.go index 619528203..16d046980 100644 --- a/internal/hcp/registry/types.bucket_service_test.go +++ b/internal/hcp/registry/types.bucket_service_test.go @@ -117,7 +117,7 @@ func TestInitialize_ExistingBucketNewVersion(t *testing.T) { t.Errorf("expected call to GetBucket but it didn't happen") } if mockService.CreateBucketCalled { - t.Errorf("expected call to CreateBucket but it didn't happen") + t.Errorf("unexpected call to CreateBucket") } if !mockService.UpdateBucketCalled {