From 54767cc833f84066226cb87ae8e23e69cec8668f Mon Sep 17 00:00:00 2001 From: Natalie Arellano Date: Mon, 29 Jul 2024 11:38:43 -0400 Subject: [PATCH] Update expected digest This version of imgutil doesn't mutate the digest Signed-off-by: Natalie Arellano --- acceptance/analyzer_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acceptance/analyzer_test.go b/acceptance/analyzer_test.go index 1db7c7720..ade210fb6 100644 --- a/acceptance/analyzer_test.go +++ b/acceptance/analyzer_test.go @@ -1029,7 +1029,7 @@ func testAnalyzerFunc(platformAPI string) func(t *testing.T, when spec.G, it spe analyzer := assertAnalyzedMetadata(t, filepath.Join(copyDir, "analyzed.toml")) h.AssertNotNil(t, analyzer.RunImage) analyzedImagePath := filepath.Join(path.RootDir, "layout-repo", "index.docker.io", "library", "busybox", "latest") - reference := fmt.Sprintf("%s@%s", analyzedImagePath, "sha256:834f8848308af7090ed7b2270071d28411afc42078e3ba395b1b0a78e2f8b0e2") + reference := fmt.Sprintf("%s@%s", analyzedImagePath, "sha256:f75f3d1a317fc82c793d567de94fc8df2bece37acd5f2bd364a0d91a0d1f3dab") h.AssertEq(t, analyzer.RunImage.Reference, reference) }) })