From 7cad06ea18e7dc4a1385617c5a5268de5c797f40 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Tue, 29 Oct 2019 17:12:18 +0200 Subject: [PATCH] Minor test fixes --- 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 309b47c3..4310fc41 100644 --- a/tests/commands/test_init.py +++ b/tests/commands/test_init.py @@ -72,7 +72,7 @@ def test_init_ide_atom(clirunner, validate_cliresult, tmpdir): assert all( [tmpdir.join(f).check() for f in (".clang_complete", ".gcc-flags.json")] ) - assert "arduinoavr" in tmpdir.join(".clang_complete").read() + assert "framework-arduino" in tmpdir.join(".clang_complete").read() # switch to NodeMCU result = clirunner.invoke(cmd_init, ["--ide", "atom", "-b", "nodemcuv2"]) @@ -84,7 +84,7 @@ def test_init_ide_atom(clirunner, validate_cliresult, tmpdir): result = clirunner.invoke(cmd_init, ["--ide", "atom"]) validate_cliresult(result) validate_pioproject(str(tmpdir)) - assert "arduinoavr" in tmpdir.join(".clang_complete").read() + assert "framework-arduino" in tmpdir.join(".clang_complete").read() def test_init_ide_eclipse(clirunner, validate_cliresult):