Skip to content

Commit 052e17c

Browse files
authored
Fixing up number tck test (#311)
Signed-off-by: David Kral <david.k.kral@oracle.com>
1 parent 8983932 commit 052e17c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tck/src/main/java/ee/jakarta/tck/json/bind/customizedmapping/numberformat/NumberFormatCustomizationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ public void testNumberFormatPackageTypeOverride() {
160160
+ "package during marshalling using JsonbNumberFormat annotation on type.",
161161
jsonString, matchesPattern("\\{\\s*\"instance\"\\s*:\\s*\"123,456.79\"\\s*\\}"));
162162

163-
PackageCustomizedTypeOverriddenDoubleContainer unmarshalledObject = jsonb.fromJson("{ \"instance\" : \"123 456.789\" }",
163+
PackageCustomizedTypeOverriddenDoubleContainer unmarshalledObject = jsonb.fromJson("{ \"instance\" : \"123,456.789\" }",
164164
PackageCustomizedTypeOverriddenDoubleContainer.class);
165165
assertThat("Failed to correctly override number format customization using JsonbNumberFormat annotation on "
166166
+ "package during unmarshalling using JsonbNumberFormat annotation on type.",

0 commit comments

Comments
 (0)