tests: update test to all lowercase

This commit is contained in:
Michael Wurm 2023-08-02 13:42:02 +02:00
parent f0965d7aa9
commit c92ada92db

View File

@ -139,7 +139,7 @@ class TestPipreqs(unittest.TestCase):
def test_get_pkg_names(self): def test_get_pkg_names(self):
pkgs = ["jury", "Japan", "camel", "Caroline"] pkgs = ["jury", "Japan", "camel", "Caroline"]
actual_output = pipreqs.get_pkg_names(pkgs) actual_output = pipreqs.get_pkg_names(pkgs)
expected_output = ["camel", "Caroline", "Japan", "jury"] expected_output = ["camel", "caroline", "japan", "jury"]
self.assertEqual(actual_output, expected_output) self.assertEqual(actual_output, expected_output)
def test_get_use_local_only(self): def test_get_use_local_only(self):