diff options
Diffstat (limited to 'examples/test_bibparse.py')
| -rw-r--r-- | examples/test_bibparse.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/test_bibparse.py b/examples/test_bibparse.py index 908381b..9857ab4 100644 --- a/examples/test_bibparse.py +++ b/examples/test_bibparse.py @@ -66,7 +66,7 @@ class TestBibparse(unittest.TestCase): ) for obj in (bp.quoted_string, bp.string, bp.field_value): self.assertEqual([], obj.parseString('""').asList()) - self.assertEqual( "a string", obj.parseString('"a string"')[0]) + self.assertEqual("a string", obj.parseString('"a string"')[0]) self.assertEqual( ["a ", ["nested"], "string"], obj.parseString('"a {nested} string"').asList(), |
