We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef05b5c commit a4bd138Copy full SHA for a4bd138
unittests/plain_c_tester.py
@@ -26,10 +26,9 @@ def setUp(self):
26
def test( self ):
27
self.global_ns.free_fun( 'hello_sum' )
28
self.global_ns.free_fun( 'hello_print' )
29
- declarations.print_declarations( self.global_ns )
30
f = self.global_ns.free_fun( 'do_smth' )
31
for arg in f.arguments:
32
- print arg.type.decl_string
+ self.failUnless( arg.type.decl_string )
33
34
def create_suite():
35
suite = unittest.TestSuite()
0 commit comments