Review normalize command architecture
All checks were successful
ci/woodpecker/tag/release Pipeline was successful

This commit is contained in:
2026-05-09 12:38:06 +00:00
parent 3591041fa8
commit 6dbb7ab17e
3 changed files with 27 additions and 2 deletions

View File

@@ -80,7 +80,7 @@ func TestParseReaderSegmentsNotArrayFails(t *testing.T) {
}
func TestParseReaderTopLevelScalarShapesFail(t *testing.T) {
tests := []string{`"text"`, `42`, `null`}
tests := []string{`"text"`, `42`, `null`, `true`}
for _, input := range tests {
_, err := ParseReader(strings.NewReader(input))
if err == nil {