diff --git a/pkg/compiler/artifact_test.go b/pkg/compiler/artifact_test.go index 9813fdd4..d5b243cc 100644 --- a/pkg/compiler/artifact_test.go +++ b/pkg/compiler/artifact_test.go @@ -125,7 +125,7 @@ RUN echo bar > /test2`)) err = b.ExtractRootfs(CompilerBackendOptions{SourcePath: filepath.Join(tmpdir, "output2.tar"), Destination: rootfs}, false) Expect(err).ToNot(HaveOccurred()) - artifact, err := ExtractArtifactFromDelta(rootfs, filepath.Join(tmpdir, "package.tar"), diffs, 2, false, []string{}) + artifact, err := ExtractArtifactFromDelta(rootfs, filepath.Join(tmpdir, "package.tar"), diffs, 2, false, []string{}, None) Expect(err).ToNot(HaveOccurred()) Expect(helpers.Exists(filepath.Join(tmpdir, "package.tar"))).To(BeTrue()) err = helpers.Untar(artifact.GetPath(), unpacked, false)