From 840e5a951bc1388e3fe2dbc13b78acc060d10ecf Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Sun, 8 Apr 2018 12:55:15 -0400 Subject: remove security_group_id stuff --- Bugzilla/Install.pm | 9 +-------- 1 file changed, 1 insertion(+), 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 -- cgit v1.2.3-24-g4f1b