From 1f1e7dc63d4b0e60bed219d45ceeea224bc0d327 Mon Sep 17 00:00:00 2001 From: Serene-Arc Date: Sat, 23 Jul 2022 17:02:01 +1000 Subject: [PATCH] Fix file path for test --- tests/test_configuration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_configuration.py b/tests/test_configuration.py index 6b6cd86..060f145 100644 --- a/tests/test_configuration.py +++ b/tests/test_configuration.py @@ -25,7 +25,7 @@ def test_process_click_context(arg_dict: dict): def test_yaml_file_read(): - file = './yaml_test_configuration.yaml' + file = './tests/yaml_test_configuration.yaml' test_config = Configuration() test_config.parse_yaml_options(file) assert test_config.subreddit == ['EarthPorn', 'TwoXChromosomes', 'Mindustry']