From: Don Armstrong Date: Fri, 16 Mar 2018 00:15:18 +0000 (-0700) Subject: tags are now sorted when they are split X-Git-Url: https://git.donarmstrong.com/?p=debbugs.git;a=commitdiff_plain;h=60806f747d33f48ba01fab6fa8be96fff83de497 tags are now sorted when they are split --- diff --git a/t/03_status.t b/t/03_status.t index c592ed4..5aef7b6 100644 --- a/t/03_status.t +++ b/t/03_status.t @@ -26,7 +26,7 @@ is_deeply($temp[0]{blocks},[qw(1 2 3)], is_deeply($temp[0]{blockedby},[], 'split_status_fields handles empty fields properly', ); -is_deeply($temp[0]{tags},[qw(foo bar baz)], +is_deeply($temp[0]{tags},[qw(bar baz foo)], 'split_status_fields splits tags properly', ); my $temp = Debbugs::Status::split_status_fields($data);