@@ -819,8 +819,7 @@ def test_unmodified(self):
819819 '''
820820 self .assertEqual (
821821 expand_package_list (self .repo ,
822- BugInfo (BugCategory .STABLEREQ , data ),
823- ['amd64@gentoo.org' , 'hppa@gentoo.org' ]),
822+ BugInfo (BugCategory .STABLEREQ , data )),
824823 data )
825824
826825 def test_asterisk_streq (self ):
@@ -836,8 +835,7 @@ def test_asterisk_streq(self):
836835 '''
837836 self .assertEqual (
838837 expand_package_list (self .repo ,
839- BugInfo (BugCategory .STABLEREQ , data ),
840- ['hppa@gentoo.org' ]),
838+ BugInfo (BugCategory .STABLEREQ , data )),
841839 expect )
842840
843841 def test_asterisk_kwreq (self ):
@@ -853,25 +851,7 @@ def test_asterisk_kwreq(self):
853851 '''
854852 self .assertEqual (
855853 expand_package_list (self .repo ,
856- BugInfo (BugCategory .KEYWORDREQ , data ),
857- ['hppa@gentoo.org' ]),
858- expect )
859-
860- def test_asterisk_to_empty (self ):
861- data = '''
862- test/mixed-keywords-3 *
863- test/mixed-keywords-4 ^
864- test/amd64-testing-1 ^
865- '''
866- expect = f'''
867- test/mixed-keywords-3 { "" }
868- test/mixed-keywords-4 { "" }
869- test/amd64-testing-1 { "" }
870- '''
871- self .assertEqual (
872- expand_package_list (self .repo ,
873- BugInfo (BugCategory .STABLEREQ , data ),
874- ['amd64@gentoo.org' , 'hppa@gentoo.org' ]),
854+ BugInfo (BugCategory .KEYWORDREQ , data )),
875855 expect )
876856
877857 def test_above (self ):
@@ -891,8 +871,7 @@ def test_above(self):
891871 '''
892872 self .assertEqual (
893873 expand_package_list (self .repo ,
894- BugInfo (BugCategory .STABLEREQ , data ),
895- ['hppa@gentoo.org' ]),
874+ BugInfo (BugCategory .STABLEREQ , data )),
896875 expect )
897876
898877 def test_above_empty (self ):
@@ -906,8 +885,7 @@ def test_above_empty(self):
906885 '''
907886 self .assertEqual (
908887 expand_package_list (self .repo ,
909- BugInfo (BugCategory .STABLEREQ , data ),
910- ['hppa@gentoo.org' ]),
888+ BugInfo (BugCategory .STABLEREQ , data )),
911889 expect )
912890
913891 def test_above_empty_plus_keywords_left (self ):
@@ -917,8 +895,7 @@ def test_above_empty_plus_keywords_left(self):
917895 '''
918896 with self .assertRaises (ExpandImpossible ):
919897 expand_package_list (self .repo ,
920- BugInfo (BugCategory .STABLEREQ , data ),
921- ['hppa@gentoo.org' ])
898+ BugInfo (BugCategory .STABLEREQ , data ))
922899
923900 def test_above_empty_plus_keywords_right (self ):
924901 data = '''
@@ -927,8 +904,7 @@ def test_above_empty_plus_keywords_right(self):
927904 '''
928905 with self .assertRaises (ExpandImpossible ):
929906 expand_package_list (self .repo ,
930- BugInfo (BugCategory .STABLEREQ , data ),
931- ['hppa@gentoo.org' ])
907+ BugInfo (BugCategory .STABLEREQ , data ))
932908
933909
934910class FakeEbuild (object ):
0 commit comments