Skip to content

Commit 18f5af4

Browse files
committed
Fix pylint error from missing comma in list.
1 parent 04d5843 commit 18f5af4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_mig_shared_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -926,7 +926,7 @@ def test_requested_url_base_split_invalid_edge_cases(self):
926926
('/', '/'),
927927
('/single', '/single'),
928928
('/double/slash', '/double/slash'),
929-
('invalid.proto:/1st/2nd/slash', 'invalid.proto:/1st/2nd/slash')
929+
('invalid.proto:/1st/2nd/slash', 'invalid.proto:/1st/2nd/slash'),
930930
('invalid.proto://double/slash', 'invalid.proto://double')
931931
]
932932
for (input_url, expected) in test_cases:

0 commit comments

Comments
 (0)