aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-08-29 15:39:50 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-09-03 14:41:30 -0700
commitc33d26bd369880d6cecd697041beb933f35516e0 (patch)
tree46a52a8617082af7e90daefc20767aee5bf95349 /tests
parentb30b302fe1d69e8b398a2e834eaa1330fc3ecc89 (diff)
fix test_dlfcn_unique_sig in non-asm
Diffstat (limited to 'tests')
-rw-r--r--tests/test_core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_core.py b/tests/test_core.py
index 5a2bc65a..87e430e0 100644
--- a/tests/test_core.py
+++ b/tests/test_core.py
@@ -6063,7 +6063,7 @@ return 0;
func_ptr = (FUNCTYPE)dlsym(lib_handle, "myfunc");
assert(func_ptr != NULL);
- assert(func_ptr(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0f, 0) == 13);
+ assert(func_ptr(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0) == 13);
puts("success");