1
0
forked from VimPlug/jedi

Use unicode strings in test to pass some tests in Python 2

This commit is contained in:
Dave Halter
2017-12-30 04:36:59 +01:00
parent a14f665b5a
commit 4514373de6
2 changed files with 7 additions and 7 deletions

View File

@@ -38,7 +38,7 @@ def test_versions(version):
def test_load_module(evaluator):
access_path = evaluator.compiled_subprocess.load_module(name='math')
access_path = evaluator.compiled_subprocess.load_module(name=u'math')
name, access_handle = access_path.accesses[0]
assert access_handle.py__bool__() is True