We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 600aa2a commit 5bfa115Copy full SHA for 5bfa115
metafacture-yaml/src/test/java/org/metafacture/yaml/YamlEncoderTest.java
@@ -273,25 +273,6 @@ public void testShouldPrefixOutputWithNewline() {
273
);
274
}
275
276
- @Test
277
- public void testShouldPrefixPrettyPrintedOutputWithNewline() {
278
- assertEncode(
279
- i -> {
280
- i.startRecord("");
281
- i.literal(LITERAL1, VALUE1);
282
- i.endRecord();
283
284
- i.literal(LITERAL2, VALUE2);
285
286
- },
287
- "---\n" +
288
- "L1: 'V1'",
289
- "\n" +
290
291
- "L2: 'V2'"
292
- );
293
- }
294
-
295
private void assertEncode(final Consumer<YamlEncoder> in, final String... out) {
296
final InOrder ordered = Mockito.inOrder(receiver);
297
0 commit comments