From 5bfb3d2bf49d6c601564ccbffaa00a2ba3cb473a Mon Sep 17 00:00:00 2001 From: Nathan Rijksen Date: Fri, 11 Oct 2024 13:10:18 -0700 Subject: [PATCH] Fix failing test due to formatting change --- pkg/buildscript/marshal_buildexpression.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/buildscript/marshal_buildexpression.go b/pkg/buildscript/marshal_buildexpression.go index aa04e38dc8..cb8a152803 100644 --- a/pkg/buildscript/marshal_buildexpression.go +++ b/pkg/buildscript/marshal_buildexpression.go @@ -49,7 +49,7 @@ func (b *BuildScript) MarshalBuildExpression() ([]byte, error) { let[key] = value } m[letKey] = let - return json.Marshal(m) + return json.MarshalIndent(m, "", " ") } // Note: all of the MarshalJSON functions are named the way they are because Go's JSON package