From 4ec64f89800d81437f1d931c22fa7f3ea6f10b0f Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 14 Aug 2020 17:00:18 +0300 Subject: [PATCH] Fix a test for examples --- tests/test_examples.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_examples.py b/tests/test_examples.py index c9f64c18..d0a580d4 100644 --- a/tests/test_examples.py +++ b/tests/test_examples.py @@ -35,7 +35,7 @@ def pytest_generate_tests(metafunc): # dev/platforms for manifest in PlatformManager().get_installed(): - p = PlatformFactory.newPlatform(manifest["__pkg_dir"]) + p = PlatformFactory.new(manifest["__pkg_dir"]) examples_dir = join(p.get_dir(), "examples") assert isdir(examples_dir) examples_dirs.append(examples_dir)