From 086cb1ee6d0f380ab5171493ec4054b39fdb3128 Mon Sep 17 00:00:00 2001 From: rdb Date: Fri, 6 Sep 2019 16:18:44 +0200 Subject: [PATCH] tests: fix `return` statement that should be a `continue` --- tests/test_imports.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_imports.py b/tests/test_imports.py index c1f62c8c09..1e5778f44b 100644 --- a/tests/test_imports.py +++ b/tests/test_imports.py @@ -21,7 +21,7 @@ def test_imports_panda3d(): for basename in os.listdir(dir): if basename.startswith('lib'): # This not a Python module. - return + continue module = basename.split('.', 1)[0] ext = basename[len(module):]