Skip to content

Commit a4bd138

Browse files
author
roman_yakovenko
committed
remove unnecessary printing
1 parent ef05b5c commit a4bd138

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

unittests/plain_c_tester.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,9 @@ def setUp(self):
2626
def test( self ):
2727
self.global_ns.free_fun( 'hello_sum' )
2828
self.global_ns.free_fun( 'hello_print' )
29-
declarations.print_declarations( self.global_ns )
3029
f = self.global_ns.free_fun( 'do_smth' )
3130
for arg in f.arguments:
32-
print arg.type.decl_string
31+
self.failUnless( arg.type.decl_string )
3332

3433
def create_suite():
3534
suite = unittest.TestSuite()

0 commit comments

Comments
 (0)