From 6ee3775e2b5af16193a0f643b6d36f6ce4f26bb6 Mon Sep 17 00:00:00 2001 From: Mahavir Jain Date: Tue, 10 Feb 2026 12:53:02 +0530 Subject: [PATCH] tests(ota): fix advanced ota case for matching chip id --- examples/system/ota/advanced_https_ota/pytest_advanced_ota.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/system/ota/advanced_https_ota/pytest_advanced_ota.py b/examples/system/ota/advanced_https_ota/pytest_advanced_ota.py index 3caf882225..69904b5733 100644 --- a/examples/system/ota/advanced_https_ota/pytest_advanced_ota.py +++ b/examples/system/ota/advanced_https_ota/pytest_advanced_ota.py @@ -540,7 +540,7 @@ def test_examples_protocol_advanced_https_ota_example_invalid_chip_id(dut: Dut) dut.expect('Starting Advanced OTA example', timeout=30) print('writing to device: {}'.format('https://' + host_ip + ':' + str(server_port) + '/' + random_bin_name)) dut.write('https://' + host_ip + ':' + str(server_port) + '/' + random_bin_name) - dut.expect(r'esp_https_ota: Mismatch chip id, expected 0, found \d', timeout=10) + dut.expect(r'boot_comm: mismatch chip ID, expected 0, found \d', timeout=10) try: os.remove(random_binary_file) except OSError: