From dfa383c744e8415d10af2ae6c6ee3cb2fbaafca3 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Wed, 28 Feb 2018 23:01:07 +0100 Subject: [PATCH] Fix a yield from test --- test/completion/generators.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/completion/generators.py b/test/completion/generators.py index 3e44b4c6..52cd714c 100644 --- a/test/completion/generators.py +++ b/test/completion/generators.py @@ -237,13 +237,13 @@ def test_nested(): x yield x -x, y, z = yield_nested() +x, y, z = test_nested() #? int() x #? str() y # For whatever reason this is currently empty -#? +#? float() z