From be7ebad95652b622ff6ee015e27b19a957e44f0d Mon Sep 17 00:00:00 2001 From: Yacine Elhamer Date: Thu, 22 Jun 2023 12:18:34 +0100 Subject: [PATCH] Revert "tests/fixtures.py: update path forming for the cape sample" This reverts commit 6712801b01ff952d5c720d7edd5eee88adff81ad. --- tests/fixtures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/fixtures.py b/tests/fixtures.py index 19acb7ff..238d122b 100644 --- a/tests/fixtures.py +++ b/tests/fixtures.py @@ -344,7 +344,7 @@ def get_data_path_by_name(name): return os.path.join(CD, "data", "2bf18d0403677378adad9001b1243211.elf_") elif name.startswith("0000a657"): return os.path.join( - CD, "data", "dynamic", "cape", "0000a65749f5902c4d82ffa701198038f0b4870b00a27cfca109f8f933476d82.json.gz" + CD, "data/dynamic/cape", "0000a65749f5902c4d82ffa701198038f0b4870b00a27cfca109f8f933476d82.json.gz" ) else: raise ValueError(f"unexpected sample fixture: {name}")