From: Don Armstrong Date: Sun, 26 Jul 2009 11:58:44 +0000 (-0700) Subject: * the tags are actually separated by single spaces, not comma space X-Git-Tag: release/2.6.0~457^2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=248b1f33dca246c5341c06c9bc0ff92f57cf37ac;p=debbugs.git * the tags are actually separated by single spaces, not comma space --- diff --git a/t/03_status.t b/t/03_status.t index eec2d54a..c592ed42 100644 --- a/t/03_status.t +++ b/t/03_status.t @@ -13,7 +13,7 @@ use_ok('Debbugs::Status'); my $data = {package => 'foo, bar, baz', blocks => '1 2 3', blockedby => '', - tags => 'foo, bar , baz', + tags => 'foo bar baz', }; my @temp = Debbugs::Status::split_status_fields($data);