diff options
Diffstat (limited to 'qa')
-rw-r--r-- | qa/config/generate_test_data.pl | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/qa/config/generate_test_data.pl b/qa/config/generate_test_data.pl index 2c6afe03a..65adef6a7 100644 --- a/qa/config/generate_test_data.pl +++ b/qa/config/generate_test_data.pl @@ -72,19 +72,19 @@ if ($urlbase =~ /^https/) { # BMO uses P1-P5 which is different from upstream my $field = Bugzilla::Field->new({ name => 'priority' }); foreach my $value (qw(Highest High Normal Low Lowest)) { -# Bugzilla::Field::Choice->type($field)->create({ -# value => $value, -# sortkey => 0 -# }); + Bugzilla::Field::Choice->type($field)->create({ + value => $value, + sortkey => 0 + }); } # Add missing platforms $field = Bugzilla::Field->new({ name => 'rep_platform' }); foreach my $value (qw(PC)) { -# Bugzilla::Field::Choice->type($field)->create({ -# value => $value, -# sortkey => 0 -# }); + Bugzilla::Field::Choice->type($field)->create({ + value => $value, + sortkey => 0 + }); } my %set_params = ( |