diff options
author | gabrielgio <gabriel.giovanini@pm.me> | 2021-07-14 21:47:48 +0200 |
---|---|---|
committer | gabrielgio <gabriel.giovanini@pm.me> | 2021-07-14 21:47:48 +0200 |
commit | 417fb93a9368057e85e4c8bbaabc2ae5aca123d3 (patch) | |
tree | c41889fa5f1d7835d933b4a937ffc43e07344e58 /test | |
parent | 4d43e402b2b4e27bbbbfe557216d95963a27af72 (diff) | |
download | reddit-nextcloud-importer-417fb93a9368057e85e4c8bbaabc2ae5aca123d3.tar.gz reddit-nextcloud-importer-417fb93a9368057e85e4c8bbaabc2ae5aca123d3.tar.bz2 reddit-nextcloud-importer-417fb93a9368057e85e4c8bbaabc2ae5aca123d3.zip |
fix: Fix pathing
The module imports aren't working.
Diffstat (limited to 'test')
-rw-r--r-- | test/test_download.py | 4 | ||||
-rw-r--r-- | test/test_uploader.py | 2 |
2 files changed, 3 insertions, 3 deletions
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', [ diff --git a/test/test_uploader.py b/test/test_uploader.py index bcdf04b..7fe2f44 100644 --- a/test/test_uploader.py +++ b/test/test_uploader.py @@ -1,6 +1,6 @@ import pytest -from uploader import create_folders +from importer.uploader import create_folders @pytest.fixture |