From dfae82ab4d61e3d5a3a09264025345717f4f4373 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Mon, 28 Mar 2016 11:22:19 +0200 Subject: Assert that we get an id for each file we upload Signed-off-by: Florian Pritz --- fb.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'fb.py') diff --git a/fb.py b/fb.py index 418d047..7c6f7e2 100755 --- a/fb.py +++ b/fb.py @@ -138,6 +138,8 @@ class CURLWrapper: ret = self.send_post_progress("/file/upload", []) rets["ids"] += ret["ids"] rets["urls"] += ret["urls"] + assert len(ret["ids"]) == len(ret["urls"]) + assert len(ret["ids"]) == len(chunk) for new_id, new_url, existing in zip(ret["ids"], ret["urls"], chunk): existing.id = new_id existing.url = new_url -- cgit v1.2.3-24-g4f1b