diff options
| author | adamjanovsky | 2025-02-13 13:28:31 +0100 |
|---|---|---|
| committer | GitHub | 2025-02-13 13:28:31 +0100 |
| commit | 443d38c9cf6d6e76c6667484a185839dd821fd11 (patch) | |
| tree | 508ac726d9408dc4917c1ced920f53447e9b64ac /tests/cc/test_cc_analysis.py | |
| parent | bdbd974847b713d14ccd90b617bae4e41447c09e (diff) | |
| parent | ba6da69bffd99a49a830de988af300108f3f8d80 (diff) | |
| download | sec-certs-0.3.1.tar.gz sec-certs-0.3.1.tar.zst sec-certs-0.3.1.zip | |
Merge pull request #473 from crocs-muni/pre-release-fixes0.3.1
Pre-release fixes
Diffstat (limited to 'tests/cc/test_cc_analysis.py')
| -rw-r--r-- | tests/cc/test_cc_analysis.py | 4 |
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 = {} |
