Skip to content

Commit 5ec1314

Browse files
committed
tests
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent 107864e commit 5ec1314

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/integration/test_utils_pep621.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
@ddt()
3030
class 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,

0 commit comments

Comments
 (0)