diff options
author | Dylan William Hardison <dylan@hardison.net> | 2018-04-08 18:55:15 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2018-04-08 18:55:15 +0200 |
commit | 840e5a951bc1388e3fe2dbc13b78acc060d10ecf (patch) | |
tree | c32d6ec2cab6f896ce112162129f4478857999b1 | |
parent | a23ecb4adbee46e0c12f95ba996c9e7e4dc30fd2 (diff) | |
download | bugzilla-840e5a951bc1388e3fe2dbc13b78acc060d10ecf.tar.gz bugzilla-840e5a951bc1388e3fe2dbc13b78acc060d10ecf.tar.xz |
remove security_group_id stuff
-rw-r--r-- | Bugzilla/Install.pm | 9 |
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 |