Merge branch 'develop' into update_212_Dec_merge_with_21125_chamges
[jalview.git] / test / jalview / util / PlatformTest.java
index 49f1335..8794b12 100644 (file)
@@ -140,7 +140,8 @@ public class PlatformTest
   {
     assertNull(Platform.escapeBackslashes(null));
     assertEquals(Platform.escapeBackslashes("hello world"), "hello world");
-    assertEquals(Platform.escapeBackslashes("hello\\world"), "hello\\\\world");
+    assertEquals(Platform.escapeBackslashes("hello\\world"),
+            "hello\\\\world");
   }
 
   @Test(groups = { "Functional" })