From 417fb93a9368057e85e4c8bbaabc2ae5aca123d3 Mon Sep 17 00:00:00 2001 From: gabrielgio Date: Wed, 14 Jul 2021 21:47:48 +0200 Subject: fix: Fix pathing The module imports aren't working. --- test/test_download.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/test_download.py') diff --git a/test/test_download.py b/test/test_download.py index 9bafc1c..a5c9386 100644 --- a/test/test_download.py +++ b/test/test_download.py @@ -2,7 +2,7 @@ import os import pytest -from src.downloader import SourceType, Downloader +from importer.downloader import SourceType, Downloader reddit_env = pytest.mark.skipif( os.environ.get('CLIENT_ID', '') == '' or @@ -16,7 +16,7 @@ reddit_env = pytest.mark.skipif( @pytest.fixture def mock_ydl_download(mocker): # this function is responsible for downloading the file - return mocker.patch('downloader.youtube_dl.YoutubeDL.process_info') + return mocker.patch('importer.downloader.youtube_dl.YoutubeDL.process_info') @pytest.mark.parametrize('url,source_type', [ -- cgit v1.2.3