--- a/test/jdk/java/util/Formatter/BasicBigDecimal.java Mon Mar 11 14:05:27 2019 +0530
+++ b/test/jdk/java/util/Formatter/BasicBigDecimal.java Wed May 15 10:10:53 2019 +0530
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2003, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2003, 2019, 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
@@ -1181,7 +1181,7 @@
test("%.3f", "3141592.654", mult(pi, 1000000.0));
test("%.3f", "-3141592.654", mult(pi, -1000000.0));
test("%,.4f", "3,141,592.6536", mult(pi, 1000000.0));
- test(Locale.FRANCE, "%,.4f", "3\u00a0141\u00a0592,6536", mult(pi, 1000000.0));
+ test(Locale.FRANCE, "%,.4f", "3\u202f141\u202f592,6536", mult(pi, 1000000.0));
test("%,.4f", "-3,141,592.6536", mult(pi, -1000000.0));
test("%(.4f", "3141592.6536", mult(pi, 1000000.0));
test("%(.4f", "(3141592.6536)", mult(pi, -1000000.0));