Skip to content

Commit

Permalink
Make sure a test is running
Browse files Browse the repository at this point in the history
It wasn't running since it didn't start with test_.

Thanks to coverage.py by @nedbat for catching this!
  • Loading branch information
tekknolagi committed Jan 9, 2024
1 parent 2ef9a40 commit c362ad3
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
Expand Up @@ -1723,7 +1723,7 @@ def test_read_char_appends_to_line(self) -> None:
l.read_char()
self.assertEqual(l.line, "")

def read_one_sets_lineno(self) -> None:
def test_read_one_sets_lineno(self) -> None:
l = Lexer("a b \n c d")
a = l.read_one()
b = l.read_one()
Expand Down

0 comments on commit c362ad3

Please sign in to comment.