diff --git a/test/indent/comment/comment-multiple-lines-indented/cmd b/test/indent/comment/comment-multiple-lines-indented/cmd index fbad60f2..2330d00f 100644 --- a/test/indent/comment/comment-multiple-lines-indented/cmd +++ b/test/indent/comment/comment-multiple-lines-indented/cmd @@ -1 +1 @@ -jXXX:comment-line +jXXXXX:comment-line diff --git a/test/indent/comment/comment-multiple-lines-indented/in b/test/indent/comment/comment-multiple-lines-indented/in index d81dbd16..f5e027ab 100644 --- a/test/indent/comment/comment-multiple-lines-indented/in +++ b/test/indent/comment/comment-multiple-lines-indented/in @@ -1,4 +1,6 @@ a: b: 1 + c: + d: 2 - c: 2 + e: 3 diff --git a/test/indent/comment/comment-multiple-lines-indented/out b/test/indent/comment/comment-multiple-lines-indented/out index 46f89cd5..34c257e6 100644 --- a/test/indent/comment/comment-multiple-lines-indented/out +++ b/test/indent/comment/comment-multiple-lines-indented/out @@ -1,4 +1,6 @@ a: # b: 1 + # c: + # d: 2 - # c: 2 + # e: 3 diff --git a/test/indent/comment/comment-multiple-lines-unindented/in b/test/indent/comment/comment-multiple-lines-unindented/in index d81dbd16..f5e027ab 100644 --- a/test/indent/comment/comment-multiple-lines-unindented/in +++ b/test/indent/comment/comment-multiple-lines-unindented/in @@ -1,4 +1,6 @@ a: b: 1 + c: + d: 2 - c: 2 + e: 3 diff --git a/test/indent/comment/comment-multiple-lines-unindented/out b/test/indent/comment/comment-multiple-lines-unindented/out index 9405433d..e9df3e3a 100644 --- a/test/indent/comment/comment-multiple-lines-unindented/out +++ b/test/indent/comment/comment-multiple-lines-unindented/out @@ -1,4 +1,6 @@ # a: # b: 1 +# c: +# d: 2 -# c: 2 +# e: 3 diff --git a/test/indent/comment/comment-multiple-lines-when-partially-commented/in b/test/indent/comment/comment-multiple-lines-when-partially-commented/in index e048df42..3e177da0 100644 --- a/test/indent/comment/comment-multiple-lines-when-partially-commented/in +++ b/test/indent/comment/comment-multiple-lines-when-partially-commented/in @@ -1,3 +1,6 @@ a: # b: 1 - c: 2 + c: + d: 2 + + e: 3 diff --git a/test/indent/comment/comment-multiple-lines-when-partially-commented/out b/test/indent/comment/comment-multiple-lines-when-partially-commented/out index f4bed302..4e6debd4 100644 --- a/test/indent/comment/comment-multiple-lines-when-partially-commented/out +++ b/test/indent/comment/comment-multiple-lines-when-partially-commented/out @@ -1,3 +1,6 @@ # a: # # b: 1 -# c: 2 +# c: +# d: 2 + +# e: 3