From 1127914512304fd0dbfb5ace37843c93a1df6dd8 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Mon, 18 Jul 2016 15:47:38 +0300 Subject: [PATCH] Fix broken import --- tests/commands/test_init.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/commands/test_init.py b/tests/commands/test_init.py index b702e323..817e0cbb 100644 --- a/tests/commands/test_init.py +++ b/tests/commands/test_init.py @@ -62,7 +62,7 @@ def test_init_special_board(platformio_setup, clirunner, validate_cliresult): validate_cliresult(result) boards = json.loads(result.output) - config = util.get_project_config() + config = util.load_project_config() expected_result = [ ("platform", str(boards[0]['platform'])), ("framework", str(boards[0]['frameworks'][0])), @@ -81,7 +81,7 @@ def test_init_enable_auto_uploading(platformio_setup, clirunner, ["-b", "uno", "--enable-auto-uploading"]) validate_cliresult(result) validate_pioproject(getcwd()) - config = util.get_project_config() + config = util.load_project_config() expected_result = [ ("platform", "atmelavr"), ("framework", "arduino"),