diff --git a/tests/test_pipelines.py b/tests/test_pipelines.py index dee29e2..c82fb0d 100644 --- a/tests/test_pipelines.py +++ b/tests/test_pipelines.py @@ -41,6 +41,7 @@ def test_file_path_should_call_item_get_filepath(self): def test_should_create_comic_archive_when_close_spider(self, mock_create_comic_archive, tmp_path): pipeline = FavoritesFilePipeline('mock_path') pipeline.files_path = tmp_path + (tmp_path / 'comic').mkdir() pipeline.comic_comments = {'comic': b'comment'} pipeline.close_spider(None)