From 9f9652896bc4ed62e7480513d803b5e01eac256c Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sun, 20 Jan 2013 21:50:38 +0100 Subject: [PATCH] fix test --- tests/run/builtin_abs.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run/builtin_abs.pyx b/tests/run/builtin_abs.pyx index 3eee74e..ebeade1 100644 --- a/tests/run/builtin_abs.pyx +++ b/tests/run/builtin_abs.pyx @@ -38,7 +38,7 @@ def int_abs(int a): True >>> int_abs(-5.1) == 5 True - >>> long_abs(-max_int-1) > 0 + >>> int_abs(-max_int-1) > 0 True >>> int_abs(-max_int-1) == abs(-max_int-1) or (max_int, int_abs(-max_int-1), abs(-max_int-1)) True -- 2.7.4