Remove print

This commit is contained in:
Christophe Bedard 2019-06-19 10:47:09 +02:00
parent 4362e35734
commit 20cf197b87

View file

@ -127,7 +127,6 @@ class TraceTestCase(unittest.TestCase):
:param handle_field_name: the field name of the handle to check :param handle_field_name: the field name of the handle to check
""" """
handle_field = self.get_field(event, handle_field_name) handle_field = self.get_field(event, handle_field_name)
print(f'handle_field: {handle_field}')
self.assertGreater(handle_field, 0, f'invalid handle: {handle_field_name}') self.assertGreater(handle_field, 0, f'invalid handle: {handle_field_name}')
def assertStringFieldNotEmpty(self, event: DictEvent, string_field_name: str): def assertStringFieldNotEmpty(self, event: DictEvent, string_field_name: str):