File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 2929@ddt ()
3030class TestUtilsPEP621 (TestCase ):
3131
32- def test_license_dict_text_pep621 (self ) -> None :
32+ def test_license_dict_text (self ) -> None :
3333 project = {
3434 'name' : 'testpkg' ,
3535 'license' : {'text' : 'This is the license text.' },
@@ -44,7 +44,7 @@ def test_license_dict_text_pep621(self) -> None:
4444 self .assertEqual (lic .text .content , 'This is the license text.' )
4545 self .assertEqual (lic .acknowledgement , LicenseAcknowledgement .DECLARED )
4646
47- def test_license_dict_file_pep621 (self ) -> None :
47+ def test_license_dict_file (self ) -> None :
4848 project = {
4949 'name' : 'testpkg' ,
5050 'license' : {'file' : 'license.txt' },
@@ -65,7 +65,7 @@ def test_license_dict_file_pep621(self) -> None:
6565 ('string' , 'MIT' ),
6666 ('list' , ['MIT' , 'Apache-2.0' ])
6767 )
68- def test_license_non_dict_pep621 (self , license : any ) -> None :
68+ def test_license_non_dict (self , license : any ) -> None :
6969 project = {
7070 'name' : 'testpkg' ,
7171 'license' : license ,
You can’t perform that action at this time.
0 commit comments