From fc96d44b25218d437a67f3ec277aeba77aaedcee Mon Sep 17 00:00:00 2001 From: Masaaki Goshima Date: Sun, 17 Nov 2024 22:51:22 +0900 Subject: [PATCH] add comment --- yaml_test_suite_test.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/yaml_test_suite_test.go b/yaml_test_suite_test.go index 4ee8254..01e74b0 100644 --- a/yaml_test_suite_test.go +++ b/yaml_test_suite_test.go @@ -178,13 +178,13 @@ var failureTestNames = []string{ "tags-in-implicit-mapping", "tags-on-empty-scalars", "three-dashes-and-content-without-space", - "trailing-line-of-spaces/01", - "various-combinations-of-explicit-block-mappings", - "various-trailing-comments", - "various-trailing-comments-1-3", - "wrong-indented-flow-sequence", - "wrong-indented-multiline-quoted-scalar", - "zero-indented-sequences-in-explicit-mapping-keys", + "trailing-line-of-spaces/01", // last '\n' character is needed ? + "various-combinations-of-explicit-block-mappings", // no json + "various-trailing-comments", // no json + "various-trailing-comments-1-3", // no json + "wrong-indented-flow-sequence", // error ? + "wrong-indented-multiline-quoted-scalar", // error ? + "zero-indented-sequences-in-explicit-mapping-keys", // no json } var failureTestNameMap map[string]struct{}