Codebase list libdatetime-locale-perl / 8011319
Always sort keys in tests to ensure repeatability Dave Rolsky 5 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
443443 my $locale = shift;
444444 my %formats = @_;
445445
446 for my $name ( keys %formats ) {
446 for my $name ( sort keys %formats ) {
447447 is(
448448 $locale->format_for($name), $formats{$name},
449449 "Format for $name with " . $locale->code