aboutsummaryrefslogtreecommitdiff
path: root/helper.c
diff options
context:
space:
mode:
Diffstat (limited to 'helper.c')
-rw-r--r--helper.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/helper.c b/helper.c
index c831090..17d7bcb 100644
--- a/helper.c
+++ b/helper.c
@@ -6,7 +6,7 @@
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/08 03:07:07 by cacharle #+# #+# */
-/* Updated: 2020/02/08 03:07:08 by cacharle ### ########.fr */
+/* Updated: 2020/04/12 20:05:58 by charles ### ########.fr */
/* */
/* ************************************************************************** */
@@ -26,13 +26,3 @@ print_signaled_ko(void)
printf("KO: [SEGFAULT]: %s\n", test_name);
fflush(stdout);
}
-
-void
-expect_int(int expected, int actual)
-{
- if (actual != expected)
- printf("KO: [COMPARE]: %s: expected: %d got: %d\n", test_name, expected, actual);
- else
- print_ok();
- fflush(stdout);
-}