remove unneeded bytes casting from test_mb

This commit is contained in:
Johnny Robeson 2016-06-12 18:03:08 -04:00
parent a76de95183
commit 10dda13d2a

View file

@ -66,7 +66,7 @@ class MBAlbumInfoTest(_common.TestCase):
for i, recording in enumerate(tracks):
track = {
'recording': recording,
'position': bytes(i + 1),
'position': i + 1,
}
if track_length:
# Track lengths are distinct from recording lengths.