From fea135da4bbceb6173109af3a36ca9d0a9dbdcd9 Mon Sep 17 00:00:00 2001 From: Cody Baker <51133164+CodyCBakerPhD@users.noreply.github.com> Date: Sun, 28 Apr 2024 22:30:00 -0400 Subject: [PATCH] fix name --- src/nwbinspector/testing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nwbinspector/testing.py b/src/nwbinspector/testing.py index 55f839d56..f376a1314 100644 --- a/src/nwbinspector/testing.py +++ b/src/nwbinspector/testing.py @@ -60,7 +60,7 @@ def load_testing_config() -> dict: "Please try reinstalling the package." ) - with open(file=test_config_file_path) as file: + with open(file=TESTING_CONFIG_FILE_PATH) as file: test_config = json.load(file) return test_config