Skip to content

Commit

Permalink
Fix failing test due to formatting change
Browse files Browse the repository at this point in the history
  • Loading branch information
Naatan committed Oct 11, 2024
1 parent 28354bc commit 5bfb3d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/buildscript/marshal_buildexpression.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5bfb3d2

Please sign in to comment.