1
0
forked from VimPlug/jedi

Another small issue in the tests

This commit is contained in:
Dave Halter
2018-01-20 21:47:31 +01:00
parent 20d64cf2b3
commit 256f001480

View File

@@ -12,6 +12,6 @@ import pytest
])
def test_equals(source):
script = Script(source)
node = script._get_module_node().children[0]
first, = script._get_module().eval_node(node)
node = script._module_node.children[0]
first, = script._get_module.eval_node(node)
assert isinstance(first, CompiledObject) and first.obj is True