From 2b9429be38588ed8d0807fbe42f0da6aa9f30cf9 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Tue, 30 Jan 2018 23:09:42 +0100 Subject: [PATCH] Update the ahead of time tests --- test/completion/pep0484_aheadoftime.py | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/test/completion/pep0484_aheadoftime.py b/test/completion/pep0484_aheadoftime.py index fb31a931..53877f69 100644 --- a/test/completion/pep0484_aheadoftime.py +++ b/test/completion/pep0484_aheadoftime.py @@ -4,23 +4,16 @@ somelist = [1, 2, 3, "A", "A"] element : int -for element in somelist[0:3]: +for element in somelist: #? int() element - -otherlist = [1, "A"] -for e in otherlist: - #? int() str() - e - - -test_string: str = "Hello, world!" +test_string: str = NOT_DEFINED #? str() test_string char: str -for char in test_string: +for char in NOT_DEFINED: #? str() char