Skip to content

Commit 58eeb07

Browse files
committed
chore(test): format with poe
1 parent f05ac9e commit 58eeb07

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/plugins/test_smartplaylist.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,9 @@ def test_playlist_update_dest_regen(self):
340340
type(i).title = PropertyMock(return_value="fake title")
341341
type(i).length = PropertyMock(return_value=300.123)
342342
# Set a path which is not equal to the one returned by `item.destination`.
343-
type(i).path = PropertyMock(return_value=b"/imported/path/with/dont/move/tagada.mp3")
343+
type(i).path = PropertyMock(
344+
return_value=b"/imported/path/with/dont/move/tagada.mp3"
345+
)
344346
# Set a path which would be equal to the one returned by `item.destination`.
345347
type(i).destination = PropertyMock(return_value=lambda: b"/tagada.mp3")
346348
i.evaluate_template.side_effect = lambda pl, _: pl.replace(
@@ -414,6 +416,7 @@ def test_playlist_update_dest_regen(self):
414416
+ b"http://beets:8337/files/imported/path/with/dont/move/tagada.mp3\n"
415417
)
416418

419+
417420
class SmartPlaylistCLITest(PluginTestCase):
418421
plugin = "smartplaylist"
419422

0 commit comments

Comments
 (0)