mirror of
https://github.com/beetbox/beets.git
synced 2026-01-30 12:02:41 +01:00
treat tag values as strings in ReadWriteTestBase
This commit is contained in:
parent
a1609ec548
commit
66431ab4de
1 changed files with 1 additions and 1 deletions
|
|
@ -695,7 +695,7 @@ class ReadWriteTestBase(ArtTestMixin, GenreListTestMixin,
|
|||
# ReplayGain is float
|
||||
tags[key] = 1.0
|
||||
else:
|
||||
tags[key] = b'value\u2010%s' % key
|
||||
tags[key] = 'value\u2010%s' % key
|
||||
|
||||
for key in ['disc', 'disctotal', 'track', 'tracktotal', 'bpm']:
|
||||
tags[key] = 1
|
||||
|
|
|
|||
Loading…
Reference in a new issue