test/jdk/java/util/Formatter/BasicInt.java
branchmetal-prototype-branch
changeset 57357 f3beca8f19fc
parent 54769 925ee7a89325
--- a/test/jdk/java/util/Formatter/BasicInt.java	Mon Mar 11 14:05:27 2019 +0530
+++ b/test/jdk/java/util/Formatter/BasicInt.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
@@ -594,7 +594,7 @@
         int oneToSeven = (int) 1234567;
         test("%d", "1234567", oneToSeven);
         test("%,d", "1,234,567", oneToSeven);
-        test(Locale.FRANCE, "%,d", "1\u00a0234\u00a0567", oneToSeven);
+        test(Locale.FRANCE, "%,d", "1\u202f234\u202f567", oneToSeven);
         test("%,d", "-1,234,567", negate(oneToSeven));
         test("%(d", "1234567", oneToSeven);
         test("%(d", "(1234567)", negate(oneToSeven));