Skip to content

Commit

Permalink
Update test_reader.py
Browse files Browse the repository at this point in the history
  • Loading branch information
cthoyt committed Nov 24, 2024
1 parent 8bb0370 commit b3250c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class TestUtils(unittest.TestCase):

def test_first_nonescaped_quote(self):
"""Test finding the first non-escaped double quote."""
self.assertIsNone(get_first_nonescaped_quote(''))
self.assertIsNone(get_first_nonescaped_quote(""))
self.assertEqual(0, get_first_nonescaped_quote('"'))
self.assertEqual(0, get_first_nonescaped_quote('"abc'))
self.assertEqual(0, get_first_nonescaped_quote('"abc"'))
Expand Down

0 comments on commit b3250c5

Please sign in to comment.