From 5fa8338886ea983ab8c9871d831e436c50c4672e Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Tue, 28 May 2019 01:55:22 +0200 Subject: [PATCH] Enable a test that is kind of xfailing --- test/completion/pep0484_typing.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/completion/pep0484_typing.py b/test/completion/pep0484_typing.py index aabab6a7..cfdb9853 100644 --- a/test/completion/pep0484_typing.py +++ b/test/completion/pep0484_typing.py @@ -349,7 +349,8 @@ in_out2("") in_out2(str()) #? str() int() in_out2() -##? str() int() +# TODO this should actually be str() int(), because of the constraints. +#? float() in_out2(1.0) # -------------------------