From e1ad717997a3948950c60160d8d4232d76f6e996 Mon Sep 17 00:00:00 2001 From: gamerover98 Date: Sun, 31 Dec 2023 14:17:13 +0100 Subject: [PATCH] Fixed tests --- .../java/ch/jalu/configme/properties/StringPropertyTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/ch/jalu/configme/properties/StringPropertyTest.java b/src/test/java/ch/jalu/configme/properties/StringPropertyTest.java index da7438d5..927b73f3 100644 --- a/src/test/java/ch/jalu/configme/properties/StringPropertyTest.java +++ b/src/test/java/ch/jalu/configme/properties/StringPropertyTest.java @@ -157,7 +157,7 @@ void shouldWriteMultipleLines() throws IOException { // set a multiple-line strings configurationData.setValue(l1Property, "First row\nSecond row"); - configurationData.setValue(l2Property, "First row\r\b\f\nSecond row "); + configurationData.setValue(l2Property, "First row\r\nSecond row "); configurationData.setValue(l3Property, "First text Second text"); configurationData.setValue(l4Property, "[{\r\nenabled : true \r\n}]");