Start using the correct parser for each environment

This commit is contained in:
Dave Halter
2017-12-19 19:19:35 +01:00
parent a9ebd92c20
commit 96a67f9a4c
5 changed files with 10 additions and 11 deletions

View File

@@ -15,7 +15,7 @@ def test_find_python_environments():
for env in envs:
assert env.version_info
assert env.get_sys_path()
parser_version = env.get_parser().version_info
parser_version = env.get_grammar().version_info
assert parser_version[:2] == env.version_info[:2]