diff --git a/platformio/pioplus.py b/platformio/pioplus.py index 6071795a..07704885 100644 --- a/platformio/pioplus.py +++ b/platformio/pioplus.py @@ -46,7 +46,7 @@ def pioplus_install(): def pioplus_update(): pm = PioPlusPackageManager() for item in PACKAGE_DEPS.values(): - package_dir = pm.get_package_dir(item['name'], item['requirements']) + package_dir = pm.get_package_dir(item['name']) if package_dir: pm.update(item['name'], item['requirements']) diff --git a/tests/commands/test_test.py b/tests/commands/test_test.py index c725c780..5147f941 100644 --- a/tests/commands/test_test.py +++ b/tests/commands/test_test.py @@ -26,4 +26,4 @@ def test_local_env(): if result['returncode'] != 1: pytest.fail(result) assert all( - [s in result['out'] for s in ("[PASSED]", "[IGNORED]", "[FAILED]")]) + [s in result['out'] for s in ("PASSED", "IGNORED", "FAILED")])