Skip to content

Commit 5bfa115

Browse files
committed
Remove superflous test
Complements 600aa2a.
1 parent 600aa2a commit 5bfa115

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

metafacture-yaml/src/test/java/org/metafacture/yaml/YamlEncoderTest.java

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -273,25 +273,6 @@ public void testShouldPrefixOutputWithNewline() {
273273
);
274274
}
275275

276-
@Test
277-
public void testShouldPrefixPrettyPrintedOutputWithNewline() {
278-
assertEncode(
279-
i -> {
280-
i.startRecord("");
281-
i.literal(LITERAL1, VALUE1);
282-
i.endRecord();
283-
i.startRecord("");
284-
i.literal(LITERAL2, VALUE2);
285-
i.endRecord();
286-
},
287-
"---\n" +
288-
"L1: 'V1'",
289-
"\n" +
290-
"---\n" +
291-
"L2: 'V2'"
292-
);
293-
}
294-
295276
private void assertEncode(final Consumer<YamlEncoder> in, final String... out) {
296277
final InOrder ordered = Mockito.inOrder(receiver);
297278

0 commit comments

Comments
 (0)