summaryrefslogtreecommitdiff
path: root/tests/test_c_generator.py
diff options
context:
space:
mode:
authorEli Bendersky <eliben@gmail.com>2021-08-31 06:11:37 -0700
committerEli Bendersky <eliben@gmail.com>2021-08-31 06:11:37 -0700
commit0e4f8ae855a54142e812b4604eca20f186db9fe4 (patch)
tree7a5096158bb7177253dc69126ab66338a67a5d82 /tests/test_c_generator.py
parentb1dbdc5e21346de0fec7fbb814dedbe1585bcfec (diff)
downloadpycparser-0e4f8ae855a54142e812b4604eca20f186db9fe4.tar.gz
Add comments and clean up whitespace
Diffstat (limited to 'tests/test_c_generator.py')
-rw-r--r--tests/test_c_generator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_c_generator.py b/tests/test_c_generator.py
index 0cffa9e..4563523 100644
--- a/tests/test_c_generator.py
+++ b/tests/test_c_generator.py
@@ -430,7 +430,7 @@ class TestCasttoC(unittest.TestCase):
memmgr_path = self._find_file('memmgr.h')
ast2 = parse_file(memmgr_path, use_cpp=True,
- cpp_path = cpp_path(), cpp_args = cpp_args())
+ cpp_path=cpp_path(), cpp_args=cpp_args())
void_ptr_type = ast2.ext[-3].type.type
void_type = void_ptr_type.type
self.assertEqual(generator.visit(c_ast.Cast(void_ptr_type, test_fun)),