diff --git a/Examples/test-suite/c/Makefile.in b/Examples/test-suite/c/Makefile.in index e5c500f8e..671cf93e0 100644 --- a/Examples/test-suite/c/Makefile.in +++ b/Examples/test-suite/c/Makefile.in @@ -63,7 +63,6 @@ FAILING_CPP_TESTS := \ class_ignore \ class_scope_weird \ constant_pointers \ - cpp_basic_template_function \ cpp_namespace \ cpp_typedef \ c_backend_cpp_natural_std_string \ diff --git a/Examples/test-suite/c/cpp_basic_template_function_runme.c b/Examples/test-suite/c/cpp_basic_template_function_runme.c index 10943d5e7..920d35a7e 100644 --- a/Examples/test-suite/c/cpp_basic_template_function_runme.c +++ b/Examples/test-suite/c/cpp_basic_template_function_runme.c @@ -2,7 +2,7 @@ #include "cpp_basic_template_function/cpp_basic_template_function_wrap.h" int main() { - assert(GetMaxInt(3, 5) == 5); + assert(_wrap_GetMaxInt(3, 5) == 5); return 0; -} \ No newline at end of file +}