FELIX-4758, fix SCRCommandTest on windows, thanks to Sean Bright

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1668761 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/scr/src/test/java/org/apache/felix/scr/impl/SCRCommandlTest.java b/scr/src/test/java/org/apache/felix/scr/impl/SCRCommandlTest.java
index b93c7a9..2a6f94d 100644
--- a/scr/src/test/java/org/apache/felix/scr/impl/SCRCommandlTest.java
+++ b/scr/src/test/java/org/apache/felix/scr/impl/SCRCommandlTest.java
@@ -37,11 +37,11 @@
     public void testPropertyInfo()
     {
         ScrCommand scr = new ScrCommand(null, null, null);
-         check(scr, "  Properties:\n    key = [1, 2]\n", new int[] {1, 2});
-         check(scr, "  Properties:\n    key = [1, 2]\n", new String[] {"1", "2"});
-         check(scr, "  Properties:\n    key = [true, false]\n", new Boolean[] {true, false});
-         check(scr, "  Properties:\n    key = foo\n", "foo");
-         check(scr, "  Properties:\n    key = true\n", true);
+         check(scr, String.format("  Properties:%n    key = [1, 2]%n"), new int[] {1, 2});
+         check(scr, String.format("  Properties:%n    key = [1, 2]%n"), new String[] {"1", "2"});
+         check(scr, String.format("  Properties:%n    key = [true, false]%n"), new Boolean[] {true, false});
+         check(scr, String.format("  Properties:%n    key = foo%n"), "foo");
+         check(scr, String.format("  Properties:%n    key = true%n"), true);
     }
 
     private PrintWriter check(ScrCommand scr, String expected, Object o)