aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/cc/test_cc_analysis.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cc/test_cc_analysis.py')
-rw-r--r--tests/cc/test_cc_analysis.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/cc/test_cc_analysis.py b/tests/cc/test_cc_analysis.py
index 6591ca18..a6b1b5e1 100644
--- a/tests/cc/test_cc_analysis.py
+++ b/tests/cc/test_cc_analysis.py
@@ -37,11 +37,11 @@ def processed_cc_dset(
) -> CCDataset:
tmp_dir = tmp_path_factory.mktemp("cc_dset")
shutil.copytree(analysis_data_dir, tmp_dir, dirs_exist_ok=True)
- shutil.copy(pp_data_dir / "pp.json", tmp_dir / "pp.json")
+ shutil.copy(pp_data_dir / "dataset.json", tmp_dir / "dataset.json")
cc_dset = CCDataset.from_json(tmp_dir / "vulnerable_dataset.json")
cc_dset.aux_handlers[ProtectionProfileDatasetHandler].root_dir.mkdir(parents=True, exist_ok=True)
- shutil.copy(tmp_dir / "pp.json", cc_dset.aux_handlers[ProtectionProfileDatasetHandler].dset_path)
+ shutil.copy(tmp_dir / "dataset.json", cc_dset.aux_handlers[ProtectionProfileDatasetHandler].dset_path)
cc_dset.aux_handlers[ProtectionProfileDatasetHandler].process_dataset()
cc_dset.aux_handlers[CPEMatchDictHandler].dset = {}