diff options
author | Byron Jones <glob@mozilla.com> | 2015-09-30 06:47:38 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-09-30 06:47:38 +0200 |
commit | 6050008216dda1d9ea3cb651ea329c8885fde1ae (patch) | |
tree | 574440e0777361368fd67dcb0505492ace5026bb /qa/config | |
parent | d9d7e95516bdc059f12b0d0f8bd0cb1048a01785 (diff) | |
download | bugzilla-6050008216dda1d9ea3cb651ea329c8885fde1ae.tar.gz bugzilla-6050008216dda1d9ea3cb651ea329c8885fde1ae.tar.xz |
Bug 1207721 - consider using a broader group as the insider-group (instead of core-security)
Diffstat (limited to 'qa/config')
-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 824464967..ea4b7479f 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' }); +my $default_security_group = Bugzilla::Group->new({ name => 'core-security-release' }); $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', |