From 8d8024099f55247148671abd7eeaac3b3a186e08 Mon Sep 17 00:00:00 2001 From: Eric Rakestraw Date: Tue, 26 May 2026 13:23:45 +0000 Subject: [PATCH] Complete final cleanup verification and align unsupported artifact test naming --- internal/artifact/reader_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/artifact/reader_test.go b/internal/artifact/reader_test.go index 106a8da..442e811 100644 --- a/internal/artifact/reader_test.go +++ b/internal/artifact/reader_test.go @@ -46,8 +46,8 @@ func TestCompositeReader_Read(t *testing.T) { t.Run("unsupported ref type", func(t *testing.T) { ref := domain.ArtifactRef{ - Type: domain.ArtifactRefType("s3"), - URI: "s3://bucket/key", + Type: domain.ArtifactRefType("unsupported"), + URI: "unsupported://bucket/key", } _, err := reader.Read(ctx, ref) if !errors.Is(err, ErrUnsupportedRefType) {