From 208554d402923b22c0a50ecfca40ddf5cf3f58ac Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Wed, 29 Jun 2022 17:48:04 +1000 Subject: [PATCH] autotest: correct diagnostic message --- Tools/autotest/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/autotest/common.py b/Tools/autotest/common.py index ec2c18414e..c40fadbbbb 100644 --- a/Tools/autotest/common.py +++ b/Tools/autotest/common.py @@ -4065,7 +4065,7 @@ class AutoTest(ABC): return self.check_mission_items_same(check_atts, want, got, skip_first_item=True, strict=strict) def check_mission_item_upload_download(self, items, itype, mission_type, strict=True): - self.progress("check %s _upload/download: upload %u items" % + self.progress("check %s upload/download: upload %u items" % (itype, len(items),)) self.upload_using_mission_protocol(mission_type, items) self.progress("check %s upload/download: download items" % itype)