diff options
author | Byron Jones <glob@mozilla.com> | 2015-09-30 08:31:35 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-09-30 08:31:35 +0200 |
commit | a7a445ae1d76c7f2d090a951267e20cb337ea7e9 (patch) | |
tree | 682f4323221e470ae94d503104a2df8937c49d64 /qa | |
parent | 6050008216dda1d9ea3cb651ea329c8885fde1ae (diff) | |
download | bugzilla-a7a445ae1d76c7f2d090a951267e20cb337ea7e9.tar.gz bugzilla-a7a445ae1d76c7f2d090a951267e20cb337ea7e9.tar.xz |
Bug 1207721 - backed out for causing test failures
Diffstat (limited to 'qa')
-rw-r--r-- | qa/config/generate_test_data.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/config/generate_test_data.pl b/qa/config/generate_test_data.pl index ea4b7479f..824464967 100644 --- a/qa/config/generate_test_data.pl +++ b/qa/config/generate_test_data.pl @@ -564,7 +564,7 @@ $dbh->do('INSERT INTO group_group_map VALUES (?, ?, 0)', undef, $editbugs->id, $canconfirm->id); # BMO: Update default security group settings for new products -my $default_security_group = Bugzilla::Group->new({ name => 'core-security-release' }); +my $default_security_group = Bugzilla::Group->new({ name => 'core-security' }); $default_security_group ||= Bugzilla::Group->new({ name => 'Master' }); if ($default_security_group) { $dbh->do('UPDATE products SET security_group_id = ? WHERE security_group_id IS NULL', |