< prev index next >

test/jdk/java/text/Format/NumberFormat/Bug8132125.java

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.

@@ -21,11 +21,11 @@
  * questions.
  */
 
 /*
  * @test
- * @bug 8132125
+ * @bug 8132125 8202537
  * @summary Checks Swiss' number elements
  * @modules jdk.localedata
  */
 
 import java.text.*;

@@ -34,12 +34,12 @@
 public class Bug8132125 {
     public static void main(String[] args) {
         Locale deCH = new Locale("de", "CH");
         NumberFormat nf = NumberFormat.getInstance(deCH);
 
-        String expected = "54'839'483.142"; // i.e. "." as decimal separator, "'" as grouping separator
+        String expected = "54\u2019839\u2019483.142"; // i.e. "\u2019" as decimal separator, "\u2019" as grouping separator
         String actual = nf.format(54839483.1415);
         if (!actual.equals(expected)) {
-            throw new RuntimeException("correct for de_CH: " + expected + " vs. actual " + actual);
+            throw new RuntimeException("incorrect for de_CH: " + expected + " vs. actual " + actual);
         }
     }
 }
< prev index next >