1
0
forked from VimPlug/jedi

execute_evaluated -> execute_with_values

This commit is contained in:
Dave Halter
2019-08-12 09:43:57 +02:00
parent 084995c378
commit 467839a9ea
14 changed files with 33 additions and 33 deletions

View File

@@ -14,7 +14,7 @@ from jedi.evaluate.gradual.conversion import _stub_to_python_context_set
def test_simple(evaluator, environment):
obj = compiled.create_simple_object(evaluator, u'_str_')
upper, = obj.py__getattribute__(u'upper')
objs = list(upper.execute_evaluated())
objs = list(upper.execute_with_values())
assert len(objs) == 1
if environment.version_info.major == 2:
expected = 'unicode'