javacommons/utils/tsrc/localisation/javasrc/com/nokia/mj/test/utils/LocalisationTest.java
changeset 23 98ccebc37403
parent 21 2a9601315dfc
--- a/javacommons/utils/tsrc/localisation/javasrc/com/nokia/mj/test/utils/LocalisationTest.java	Mon May 03 12:27:20 2010 +0300
+++ b/javacommons/utils/tsrc/localisation/javasrc/com/nokia/mj/test/utils/LocalisationTest.java	Fri May 14 15:47:24 2010 +0300
@@ -180,14 +180,14 @@
             "Test %U[20",
             new Formatter("Test %U[20").arg("testMyTest").toString());
 
-        // Test %U[300] Skip
+        // Test %U[300]
         assertEquals(
-            "Test %U[300]",
+            "Test testMyTest",
             new Formatter("Test %U[300]").arg("testMyTest").toString());
 
-        // Test %U[8] Skip
+        // Test %U[8]
         assertEquals(
-            "Test %U[8]",
+            "Test testMyTe",
             new Formatter("Test %U[8]").arg("testMyTest").toString());
 
         // Test Max is higher than actual string. Expected output: whole string no padding.