From 3c6e9b3d0526a9338dc897a8e288647b2ec12b10 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Wed, 8 Jul 2026 14:19:17 +0900 Subject: internal/pkg: expose cure whence Useful for cure determinism validation of KindExec. Signed-off-by: Ophestra --- internal/pkg/compress_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/pkg/compress_test.go') diff --git a/internal/pkg/compress_test.go b/internal/pkg/compress_test.go index 5b542dce..e5e865a4 100644 --- a/internal/pkg/compress_test.go +++ b/internal/pkg/compress_test.go @@ -43,7 +43,7 @@ func TestDecompress(t *testing.T) { &client, "file:///testdata", pkg.Checksum{0xfd}, - ), pkg.Gzip), nil, nil, &pkg.ChecksumMismatchError{ + ), pkg.Gzip), nil, nil, pkg.WNew, &pkg.ChecksumMismatchError{ Got: testdataChecksum, Want: pkg.Checksum{0xfd}, }}, @@ -52,7 +52,7 @@ func TestDecompress(t *testing.T) { &client, "file:///testdata", testdataChecksum, - ), pkg.Gzip), ignorePathname, expectsChecksum(sha512.Sum384([]byte{0})), nil}, + ), pkg.Gzip), ignorePathname, expectsChecksum(sha512.Sum384([]byte{0})), pkg.WNew, nil}, }) }, expectsFS{ ".": {Mode: fs.ModeDir | 0700}, -- cgit v1.3.1