summaryrefslogtreecommitdiffstatshomepage
path: root/tests/esp32/partition_ota.py
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2021-03-11 16:09:27 +1100
committerDamien George <damien@micropython.org>2021-03-12 19:56:09 +1100
commit6129b8e401c36cc68e0f7ba8180da27a40d17621 (patch)
treef9922a1f34db804d3700ca0570827c2a8762314e /tests/esp32/partition_ota.py
parentb24fcd7aec4b34064e9d9016d417d4ca3cc925cc (diff)
downloadmicropython-6129b8e401c36cc68e0f7ba8180da27a40d17621.tar.gz
micropython-6129b8e401c36cc68e0f7ba8180da27a40d17621.zip
tests: Rename run-tests to run-tests.py for consistency.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests/esp32/partition_ota.py')
-rw-r--r--tests/esp32/partition_ota.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/esp32/partition_ota.py b/tests/esp32/partition_ota.py
index 765630c8ce..212fcf0338 100644
--- a/tests/esp32/partition_ota.py
+++ b/tests/esp32/partition_ota.py
@@ -95,7 +95,7 @@ def copy_partition(src, dest):
if sz - addr < 4096:
blk = blk[: sz - addr]
if addr & 0xFFFF == 0:
- # need to show progress to run-tests else it times out
+ # need to show progress to run-tests.py else it times out
print(" ... 0x{:06x}".format(addr))
src.readblocks(addr >> 12, blk)
dest.writeblocks(addr >> 12, blk)