summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Bugzilla/Install.pm9
1 files changed, 1 insertions, 8 deletions
diff --git a/Bugzilla/Install.pm b/Bugzilla/Install.pm
index 6ac16821e..6d47a143f 100644
--- a/Bugzilla/Install.pm
+++ b/Bugzilla/Install.pm
@@ -284,12 +284,6 @@ use constant DEFAULT_PRODUCT => {
defaultmilestone => DEFAULT_MILESTONE,
};
-use constant DEFAULT_PRODUCT_GROUP => {
- name => 'test-product-security',
- description => "Security Sensitive TestProduct Bug",
- isbuggroup => 1,
-};
-
use constant DEFAULT_COMPONENT => {
name => 'TestComponent',
description => 'This is a test component in the test product database.'
@@ -368,8 +362,7 @@ sub create_default_product {
print get_text('install_default_product',
{ name => DEFAULT_PRODUCT->{name} }) . "\n";
- my $group = Bugzilla::Group->create(DEFAULT_PRODUCT_GROUP);
- my $product = Bugzilla::Product->create({ %{DEFAULT_PRODUCT()}, security_group_id => $group->id });
+ my $product = Bugzilla::Product->create(DEFAULT_PRODUCT);
# Get the user who will be the owner of the Component.
# We pick the admin with the lowest id, which is probably the