Commit 0ebb96a0 authored by Frédéric Buclin's avatar Frédéric Buclin

Fix bustage

parent 8bc92049
......@@ -83,7 +83,8 @@ if ($single) {
push(@bugs, $bug);
}
else {
push(@illegal_bugs, { bug_id => $bug->id, error => 'NotPermitted' });
my $error = 'NotPermitted'; # Trick to make 012throwables.t happy.
push(@illegal_bugs, { bug_id => $bug->id, error => $error });
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment