mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-30 10:07:14 +02:00
Fix broken import
This commit is contained in:
@ -62,7 +62,7 @@ def test_init_special_board(platformio_setup, clirunner, validate_cliresult):
|
|||||||
validate_cliresult(result)
|
validate_cliresult(result)
|
||||||
boards = json.loads(result.output)
|
boards = json.loads(result.output)
|
||||||
|
|
||||||
config = util.get_project_config()
|
config = util.load_project_config()
|
||||||
expected_result = [
|
expected_result = [
|
||||||
("platform", str(boards[0]['platform'])),
|
("platform", str(boards[0]['platform'])),
|
||||||
("framework", str(boards[0]['frameworks'][0])),
|
("framework", str(boards[0]['frameworks'][0])),
|
||||||
@ -81,7 +81,7 @@ def test_init_enable_auto_uploading(platformio_setup, clirunner,
|
|||||||
["-b", "uno", "--enable-auto-uploading"])
|
["-b", "uno", "--enable-auto-uploading"])
|
||||||
validate_cliresult(result)
|
validate_cliresult(result)
|
||||||
validate_pioproject(getcwd())
|
validate_pioproject(getcwd())
|
||||||
config = util.get_project_config()
|
config = util.load_project_config()
|
||||||
expected_result = [
|
expected_result = [
|
||||||
("platform", "atmelavr"),
|
("platform", "atmelavr"),
|
||||||
("framework", "arduino"),
|
("framework", "arduino"),
|
||||||
|
Reference in New Issue
Block a user