From b4ffeb01107944839a0a48036291c5747460ba73 Mon Sep 17 00:00:00 2001 From: Peter Buchegger Date: Thu, 10 Nov 2022 22:05:47 +0000 Subject: [PATCH] fix --- HIL/tests/test_basic.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/HIL/tests/test_basic.py b/HIL/tests/test_basic.py index b402245..db969e1 100644 --- a/HIL/tests/test_basic.py +++ b/HIL/tests/test_basic.py @@ -7,7 +7,7 @@ def test_basic_port(ESP): ESP.begin() ESP.openPort() ESP.closePort() - ESP.end() + ESP.stop() def test_flash(ESP): @@ -18,7 +18,7 @@ def test_flash(ESP): ESP.flash.verify("0x8000", bin_dir / 'partitions.bin') ESP.flash.verify("0xe000", bin_dir / 'boot_app0.bin') ESP.flash.verify("0x10000", bin_dir / 'firmware.bin') - ESP.end() + ESP.stop() def test_flash_config(ESP): @@ -26,13 +26,13 @@ def test_flash_config(ESP): ESP.config.data["bar"] = "foo" ESP.config.data["number"] = 123 ESP.writeConfig() - ESP.end() + ESP.stop() def test_erase(ESP): ESP.begin() ESP.flash.erase() - ESP.end() + ESP.stop() def test_aprs_login(APRSIS):