Fix one of the failing tests

This commit is contained in:
Daniel Barber 2020-02-17 22:22:47 -05:00
parent 86946ad4b7
commit a30c90e615

View file

@ -154,7 +154,7 @@ class ThumbnailsTest(unittest.TestCase, TestHelper):
any_order=True)
resize = mock_artresizer.shared.resize
resize.assert_called_once_with(12345, path_to_art, md5_file)
resize.assert_called_once_with(12345, 75, path_to_art, md5_file)
plugin.add_tags.assert_called_once_with(album, resize.return_value)
mock_shutils.move.assert_called_once_with(resize.return_value,
md5_file)