colorise output

This commit is contained in:
Mike Farah
2025-12-08 20:30:47 +11:00
parent 8162f3a100
commit 554bf5a2f2
6 changed files with 131 additions and 5 deletions
+1 -1
View File
@@ -281,7 +281,7 @@ func testHclScenario(t *testing.T, s formatScenario) {
result := mustProcessFormatScenario(s, NewHclDecoder(), NewYamlEncoder(ConfiguredYamlPreferences))
test.AssertResultWithContext(t, s.expected, result, s.description)
case "roundtrip":
test.AssertResultWithContext(t, s.expected, mustProcessFormatScenario(s, NewHclDecoder(), NewHclEncoder()), s.description)
test.AssertResultWithContext(t, s.expected, mustProcessFormatScenario(s, NewHclDecoder(), NewHclEncoder(ConfiguredHclPreferences)), s.description)
}
}