Skip to content

Commit

Permalink
Remove unnecessary print statements from CPE tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bjoernricks committed Nov 8, 2023
1 parent 3a5743b commit 570d7c7
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/cpe/test_cpe.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,6 @@ def test_formatted_string_binding(self):
"cpe:2.3:a:qrokes:qr_twitter_widget:*:*:*:*:*:wordpress:*:*"
)
cpe = CPE.from_string(cpe_string)
print(repr(cpe))

self.assertEqual(
str(cpe),
Expand Down Expand Up @@ -403,7 +402,6 @@ def test_uri_unbind_examples(self):
cpe = CPE.from_string(
"cpe:/a:hp:insight_diagnostics:7.4.0.1570::~~online~win2003~x64~"
)
print(repr(cpe))
self.assertTrue(cpe.is_uri_binding())
self.assertFalse(cpe.is_formatted_string_binding())
self.assertEqual(cpe.part, Part.APPLICATION)
Expand Down

0 comments on commit 570d7c7

Please sign in to comment.