Fix "frameworks" field to JSON array

This commit is contained in:
Valeriy Koval
2015-03-11 20:45:11 +02:00
parent ce923b6b58
commit 08808be62b
14 changed files with 141 additions and 141 deletions

View File

@@ -41,7 +41,7 @@ def test_init_special_board(platformio_setup, clirunner, validate_cliresult):
config = util.get_project_config()
expected_result = [
("platform", str(uno['platform'])),
("framework", str(uno['framework'])),
("framework", str(uno['frameworks'][0])),
("board", "uno"),
("targets", "upload")
]