--- old/test/jdk/java/text/Format/NumberFormat/Bug8132125.java 2018-06-13 10:50:44.000000000 +0530 +++ new/test/jdk/java/text/Format/NumberFormat/Bug8132125.java 2018-06-13 10:50:44.000000000 +0530 @@ -1,5 +1,5 @@ /* - * 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 @@ -23,7 +23,7 @@ /* * @test - * @bug 8132125 + * @bug 8132125 8202537 * @summary Checks Swiss' number elements * @modules jdk.localedata */ @@ -36,10 +36,10 @@ 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); } } }