diff --git a/test/test_bind_names.py b/test/test_bind_names.py index c37e842c..a3813eb7 100644 --- a/test/test_bind_names.py +++ b/test/test_bind_names.py @@ -124,8 +124,8 @@ def inner_func(): assert_namespace_tree(source, expected_namespaces) def test_async_function_namespace(): - if sys.version_info < (3, 4): - pytest.skip('Test requires python 3.4 or later') + if sys.version_info < (3, 5): + pytest.skip('No async functions in python < 3.5') source = ''' name_in_module = True