about summary refs log tree commit diff
path: root/tests/conftest.py
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2026-02-09 12:04:59 -0600
committerFrederick Muriuki Muriithi2026-02-09 12:04:59 -0600
commite3d8b80b76d56227244972690e65cc37688372dc (patch)
tree255ba0b72fe1e8cb41609350b8c920be02c02f35 /tests/conftest.py
parent25e1047faec00b117b962a9d453d536d3843ca41 (diff)
downloadgn-uploader-e3d8b80b76d56227244972690e65cc37688372dc.tar.gz
Update configuration variable name.
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index a716c52..2009aab 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -183,7 +183,7 @@ def redis_conn_with_completed_job_some_errors(redis_url, redis_ttl, jobs_prefix,
 def uploads_dir(client): # pylint: disable=[redefined-outer-name]
     """Returns the configured, uploads directory, creating it if it does not
     exist."""
-    the_dir = client.application.config["UPLOAD_FOLDER"]
+    the_dir = client.application.config["UPLOADS_DIRECTORY"]
     if not os.path.exists(the_dir):
         os.mkdir(the_dir)