Skip to content

Commit 26ca9c3

Browse files
Fix integration tests (#2278)
- the updated Debian conversion stuff hitting production caused more CVEs to match for existing queries
1 parent 46caf3d commit 26ca9c3

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

gcp/api/integration_tests.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,12 @@ def test_query_purl(self):
485485

486486
self.assert_results_equal({'vulns': another_expected}, response.json())
487487

488-
expected_deb = [self._get('DLA-3203-1'), self._get('DSA-4921-1')]
488+
expected_deb = [
489+
self._get('CVE-2009-4487'),
490+
self._get('CVE-2013-0337'),
491+
self._get('DLA-3203-1'),
492+
self._get('DSA-4921-1')
493+
]
489494

490495
response = requests.post(
491496
_api() + _BASE_QUERY,

0 commit comments

Comments
 (0)