From 76d1c29b9040c1fe5ca0b7633799e1116c532879 Mon Sep 17 00:00:00 2001 From: Keming Date: Thu, 16 Jan 2025 10:30:37 +0800 Subject: [PATCH] fix test hash Signed-off-by: Keming --- pkg/lang/frontend/starlark/v0/interpreter_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/lang/frontend/starlark/v0/interpreter_test.go b/pkg/lang/frontend/starlark/v0/interpreter_test.go index 99fa4f8ee..fd62e86b3 100644 --- a/pkg/lang/frontend/starlark/v0/interpreter_test.go +++ b/pkg/lang/frontend/starlark/v0/interpreter_test.go @@ -24,6 +24,6 @@ var _ = Describe("Starlark", func() { filename := "testdata/test.envd" hash, err := GetEnvdProgramHash(filename) Expect(err).NotTo(HaveOccurred()) - Expect(hash).To(Equal("cff1c81818116d42")) + Expect(hash).To(Equal("92dcb859b270c28c")) }) })