autotest: remove really long debug line

So this was over 255*50 bytes long..... meaning the sequence number overflows...
This commit is contained in:
Peter Barker 2023-09-13 19:48:00 +10:00 committed by Peter Barker
parent 2319ba5e58
commit f30dcdc0c3

View File

@ -4705,7 +4705,6 @@ class AutoTest(ABC):
self.upload_using_mission_protocol(mission_type, items)
self.progress("check %s upload/download: download items" % itype)
downloaded_items = self.download_using_mission_protocol(mission_type)
self.progress("Downloaded items: (%s)" % str(downloaded_items))
if len(items) != len(downloaded_items):
raise NotAchievedException("Did not download same number of items as uploaded want=%u got=%u" %
(len(items), len(downloaded_items)))