From 43fd13129dfcf9bf274840874fabb010a6238204 Mon Sep 17 00:00:00 2001 From: Mike Farah Date: Wed, 18 Oct 2023 11:18:14 +1100 Subject: [PATCH] Fixing tests --- pkg/yqlib/yaml_test.go | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/pkg/yqlib/yaml_test.go b/pkg/yqlib/yaml_test.go index a68218d3..0d75433f 100644 --- a/pkg/yqlib/yaml_test.go +++ b/pkg/yqlib/yaml_test.go @@ -7,18 +7,18 @@ import ( ) var yamlFormatScenarios = []formatScenario{ - // { - // description: "basic - null", - // skipDoc: true, - // input: "null", - // expected: "null\n", - // }, - // { - // description: "basic - ~", - // skipDoc: true, - // input: "~", - // expected: "~\n", - // }, + { + description: "basic - null", + skipDoc: true, + input: "null", + expected: "null\n", + }, + { + description: "basic - ~", + skipDoc: true, + input: "~", + expected: "~\n", + }, { description: "octal", skipDoc: true,