Skip to content

Commit

Permalink
test: avoid locale-dependent output in SetObject310Test
Browse files Browse the repository at this point in the history
This is a fixup to #1388
  • Loading branch information
vlsi committed Jan 20, 2019
1 parent ebada4a commit ef14cea
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -39,6 +39,7 @@
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Locale;
import java.util.TimeZone;

public class SetObject310Test {
Expand All @@ -60,7 +61,7 @@ public class SetObject310Test {
.optionalStart()
.appendLiteral(' ')
.appendPattern("GG")
.toFormatter()
.toFormatter(Locale.ROOT)
.withResolverStyle(ResolverStyle.LENIENT)
.withChronology(IsoChronology.INSTANCE);

Expand Down

0 comments on commit ef14cea

Please sign in to comment.