From 37f3a0588e6c31519430a075a8b6db36dee44851 Mon Sep 17 00:00:00 2001 From: Hellowlol Date: Sun, 29 Jan 2017 22:50:55 +0100 Subject: [PATCH] fake it. --- tests/tests_pytest/test_video.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/tests_pytest/test_video.py b/tests/tests_pytest/test_video.py index a651bb6d..cfceae6e 100644 --- a/tests/tests_pytest/test_video.py +++ b/tests/tests_pytest/test_video.py @@ -42,7 +42,7 @@ def test_video_Movie_isPartialObject(a_movie): def test_video_Movie_iterParts(a_movie): assert len(list(a_movie.iterParts())) == 1 -def test_video_Show_download(monkeydownload, tmpdir, a_movie): +def test_video_Movie_download(monkeydownload, tmpdir, a_movie): downloaded_movie = a_movie.download(savepath=str(tmpdir)) assert len(downloaded_movie) == 1 @@ -312,18 +312,18 @@ def test_video_Show_episodes(a_show): assert len(inc_watched) == 9 assert len(ex_watched) == 8 -def test_video_Show_download(tmpdir, a_show): +def test_video_Show_download(monkeydownload, tmpdir, a_show): f = a_show.download(savepath=str(tmpdir)) assert len(f) == 9 -def _test_video_Season_download(tmpdir, a_show): +def test_video_Season_download(monkeydownload, tmpdir, a_show): sn = a_show.season('Season 1') f = sn.download(savepath=str(tmpdir)) assert len(f) == 8 -def test_video_Episode_download(tmpdir, a_episode): +def test_video_Episode_download(monkeydownload, tmpdir, a_episode): f = a_episode.download(savepath=str(tmpdir)) assert len(f) == 1