diff --git a/test/test_ui.py b/test/test_ui.py index a1e02aaae..d3ce4a560 100644 --- a/test/test_ui.py +++ b/test/test_ui.py @@ -709,10 +709,10 @@ class UpdateTest(_common.TestCase): correct_albumtypes = ["album", "live"] # Setting albumtypes does not set albumtype, currently. - # Using x[0] mirrors https://github.com/beetbox/mediafile/blob/057432ad53b3b84385e5582f69f44dc00d0a725d/mediafile.py#L1928 - correct_albumtype = correct_albumtypes[0] + # Using x[0] mirrors https://github.com/beetbox/mediafile/blob/057432ad53b3b84385e5582f69f44dc00d0a725d/mediafile.py#L1928 # noqa: E501 + correct_albumtype = correct_albumtypes[0] - album.albumtype = correct_albumtype + album.albumtype = correct_albumtype album.albumtypes = correct_albumtypes album.try_sync(write=True, move=False)