diff --git a/tests/cpe/test_cpe.py b/tests/cpe/test_cpe.py index aae9d9d6..6eef4454 100644 --- a/tests/cpe/test_cpe.py +++ b/tests/cpe/test_cpe.py @@ -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), @@ -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)