Skip to content

Commit

Permalink
Fix list tokenize test name
Browse files Browse the repository at this point in the history
gregorybchris committed Nov 26, 2023
1 parent 31b4283 commit e69dd90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scrapscript.py
Original file line number Diff line number Diff line change
@@ -819,7 +819,7 @@ def test_tokenize_with_trailing_whitespace(self) -> None:
def test_tokenize_empty_list(self) -> None:
self.assertEqual(tokenize("[ ]"), ["[", "]"])

def test_tokenize_empty_list_with_no_spaces(self) -> None:
def test_tokenize_empty_list_with_spaces(self) -> None:
self.assertEqual(tokenize("[ ]"), ["[", "]"])

def test_tokenize_list_with_items(self) -> None:

0 comments on commit e69dd90

Please sign in to comment.