From 7f0e31798ad9b7c5ac994b1465f6e02165b64a3e Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Sun, 9 Mar 2014 12:40:38 +0100 Subject: [PATCH] fix an old test case that was always wrong anyway --- test/completion/functions.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/completion/functions.py b/test/completion/functions.py index 2c92cf4e..db63b248 100644 --- a/test/completion/functions.py +++ b/test/completion/functions.py @@ -79,7 +79,8 @@ def recursion(a, b): else: return recursion(a+".", b+1) -#? int() float() +# Does not also return int anymore, because we now support operators in simple cases. +#? float() recursion("a", 1.0) def other(a):