diff --git a/tests/cpe_match/worker/test_json.py b/tests/cpe_match/worker/test_json.py index 8c0a316..8807458 100644 --- a/tests/cpe_match/worker/test_json.py +++ b/tests/cpe_match/worker/test_json.py @@ -162,7 +162,7 @@ async def test_write_json(self): async with asyncio.timeout(10): await processor.run() - temp_file_path: Path = temp_storage_path / "nvd-cpe-matches.json" + temp_file_path: Path = temp_storage_path / "nvd_cpe_matches.json" self.assertTrue(temp_file_path.exists()) with open(temp_file_path) as fp: parsed_json = json.load(fp) @@ -215,7 +215,7 @@ async def test_write_json_minimal(self): async with asyncio.timeout(10): await processor.run() - temp_file_path: Path = temp_storage_path / "nvd-cpe-matches.json" + temp_file_path: Path = temp_storage_path / "nvd_cpe_matches.json" self.assertTrue(temp_file_path.exists()) with open(temp_file_path) as fp: parsed_json = json.load(fp)