Skip to content

Commit

Permalink
Fix broken import
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed Jul 18, 2016
1 parent 5b68d34 commit 1127914
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/commands/test_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -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])),
Expand All @@ -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"),
Expand Down

0 comments on commit 1127914

Please sign in to comment.