mirror of
https://github.com/beetbox/beets.git
synced 2025-12-24 09:33:46 +01:00
Fix assertTags() in mediafile tests
This commit is contained in:
parent
c91e8cb782
commit
2dec90de7a
1 changed files with 1 additions and 1 deletions
|
|
@ -662,7 +662,7 @@ class ReadWriteTestBase(ArtTestMixin, GenreListTestMixin,
|
|||
errors.append('Tag %s does not exist' % key)
|
||||
else:
|
||||
if value2 != value:
|
||||
errors.append('Tag %s: %s != %s' % (key, value2, value))
|
||||
errors.append('Tag %s: %r != %r' % (key, value2, value))
|
||||
if any(errors):
|
||||
errors = ['Tags did not match'] + errors
|
||||
self.fail('\n '.join(errors))
|
||||
|
|
|
|||
Loading…
Reference in a new issue