Fix test failure

This commit is contained in:
Kris De Volder
2020-09-30 16:26:11 -07:00
parent 08e356f9da
commit 06bb6e677a

View File

@@ -2519,14 +2519,14 @@ public class ApplicationYamlEditorTest extends AbstractPropsEditorTest {
" green: Groen\n"+
" blue: Blauw\n" +
" not-a-color: Wrong\n" +
" blue.bad: Blauw\n" +
" blue-bad: Blauw\n" +
" blue:\n" +
" bad: Blauw"
);
editor.assertProblems(
"blue|Duplicate",
"not-a-color|Color",
"blue.bad|Color",
"blue-bad|Color",
"blue|Duplicate",
"bad: Blauw|Expecting a 'String' but got a 'Mapping'"
);