test_error.py: remove dangling print()
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Wed, 24 Jul 2019 20:35:21 +0000 (16:35 -0400)
committerPhilippe Proulx <eeppeliteloop@gmail.com>
Thu, 25 Jul 2019 18:04:47 +0000 (14:04 -0400)
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
Change-Id: I4e48e3acb8f17620ea9987b94c741b491f488ad0
Reviewed-on: https://review.lttng.org/c/babeltrace/+/1773
Tested-by: jenkins <jenkins@lttng.org>
tests/bindings/python/bt2/test_error.py

index 8caef1034d6e511841c10340540851e2fe5b88b4..c1d637778ebfc97aeb7ef81caded89f7dbd69201 100644 (file)
@@ -60,11 +60,8 @@ class SinkWithExceptionChaining(bt2._UserSinkComponent):
 
     def _consume(self):
         try:
-            print(self._iter.__next__)
             next(self._iter)
         except bt2._Error as e:
-            print(hex(id(e)))
-            print(e.__dict__)
             raise ValueError('oops') from e
 
 
This page took 0.025025 seconds and 4 git commands to generate.