From 38209ef54f7d395fb52902ed917076fdb2157bb0 Mon Sep 17 00:00:00 2001 From: Natalie Schultz <90212258+nataliejschultz@users.noreply.github.com> Date: Wed, 22 May 2024 15:36:25 -0600 Subject: [PATCH] common.py fix? Thought I would quickly change the name of debug.conf.json.sample to debug.conf.dev.json; this was not inconsequential. Seeing if this fixes it. --- emission/tests/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emission/tests/common.py b/emission/tests/common.py index 122b2fc7f..492fab547 100644 --- a/emission/tests/common.py +++ b/emission/tests/common.py @@ -259,7 +259,7 @@ def set_analysis_config(key, value): import shutil analysis_conf_path = "conf/analysis/debug.conf.json" - shutil.copyfile("%s.sample" % analysis_conf_path, + shutil.copyfile("conf/analysis/debug.conf.dev.json", analysis_conf_path) with open(analysis_conf_path) as fd: curr_config = json.load(fd)