aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorAdam Janovsky2021-11-15 16:50:05 +0100
committerAdam Janovsky2021-11-15 16:50:05 +0100
commite237a0d8f54d27d4e6acbdfbf95731c6ad087946 (patch)
tree983f8f9b8cf0e6c380ac6393b1480787e6c1b77b /tests
parent86805eee48d8792ff7b9dd6006cef9e700678790 (diff)
downloadsec-certs-e237a0d8f54d27d4e6acbdfbf95731c6ad087946.tar.gz
sec-certs-e237a0d8f54d27d4e6acbdfbf95731c6ad087946.tar.zst
sec-certs-e237a0d8f54d27d4e6acbdfbf95731c6ad087946.zip
fix wrong module path
Diffstat (limited to 'tests')
-rw-r--r--tests/test_cc_txt_processing.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_cc_txt_processing.py b/tests/test_cc_txt_processing.py
index 07afcff7..01b2212b 100644
--- a/tests/test_cc_txt_processing.py
+++ b/tests/test_cc_txt_processing.py
@@ -1,4 +1,4 @@
-import tests.data.test_cpe_cve
+import tests.data.test_cc_heuristics
from unittest import TestCase
from pathlib import Path
from typing import ClassVar
@@ -10,7 +10,7 @@ from sec_certs.sample.common_criteria import CommonCriteriaCert
class TestCommonCriteriaHeuristics(TestCase):
- dataset_json_path: ClassVar[Path] = Path(tests.data.test_cpe_cve.__path__[0]) / 'vulnerable_dataset.json'
+ dataset_json_path: ClassVar[Path] = Path(tests.data.test_cc_heuristics.__path__[0]) / 'vulnerable_dataset.json'
data_dir_path: ClassVar[Path] = dataset_json_path.parent
@classmethod