diff --git a/tests/test_playlist.py b/tests/test_playlist.py index b4a0ec57..6447fd94 100644 --- a/tests/test_playlist.py +++ b/tests/test_playlist.py @@ -95,6 +95,9 @@ def test_copyToUser(plex, show, fresh_plex, shared_username): def test_smart_playlist(plex, movies): - pl = plex.createPlaylist(title='smart_playlist', smart=True, limit=1, section=movies, year=2008) - assert len(pl.items()) == 1 - assert pl.smart + try: + pl = plex.createPlaylist(title='smart_playlist', smart=True, limit=1, section=movies, year=2008) + assert len(pl.items()) == 1 + assert pl.smart + finally: + pl.delete()