Skip to content
This repository has been archived by the owner on Feb 4, 2020. It is now read-only.

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Renaud Boyer committed Dec 9, 2019
1 parent 3c56f4d commit f6a8b15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/record.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def test_issn(self):
record = Record()
self.assertEqual(record.issn(), None)
record.add_field(Field(tag="022", indicators=["0", ""], subfields=["a", "0395-2037"]))
self.assertEqual(record.isbn(), '0395-2037')
self.assertEqual(record.issn(), '0395-2037')

def test_multiple_isbn(self):
with open('test/multi_isbn.dat', 'rb') as fh:
Expand Down

0 comments on commit f6a8b15

Please sign in to comment.