Skip to content

Commit e1e9d90

Browse files
committed
Update formatting
Signed-off-by: Jono Yang <jyang@nexb.com>
1 parent a39dc1a commit e1e9d90

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/test_purl_validator.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ def test_purl_validator_create_purl_map_entry(self):
4040
test_purl3 = "not-a-purl"
4141
test_purl4 = []
4242

43-
self.assertEqual(b'npm/@test/test', purl_validator.create_purl_map_entry(test_purl1))
44-
self.assertEqual(b'npm/test2', purl_validator.create_purl_map_entry(test_purl2))
43+
self.assertEqual(b"npm/@test/test", purl_validator.create_purl_map_entry(test_purl1))
44+
self.assertEqual(b"npm/test2", purl_validator.create_purl_map_entry(test_purl2))
4545

4646
with self.assertRaises(ValueError):
4747
purl_validator.create_purl_map_entry(test_purl3)
@@ -60,7 +60,7 @@ def test_purl_validator_create_purl_map_entry(self):
6060
self.created_purl_maps.append(purl_map_loc)
6161

6262
purl_map = purl_validator.PurlValidator.load_map(purl_map_loc)
63-
expected_results = [(b'npm/@test/test', 1), (b'npm/test2', 1)]
63+
expected_results = [(b"npm/@test/test", 1), (b"npm/test2", 1)]
6464
results = [(k, v) for k, v in purl_map.items()]
6565
self.assertEqual(expected_results, results)
6666

0 commit comments

Comments
 (0)