summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2016-03-28 11:22:19 +0200
committerFlorian Pritz <bluewind@xinu.at>2016-03-28 11:22:19 +0200
commitdfae82ab4d61e3d5a3a09264025345717f4f4373 (patch)
tree1d597a4d09627e0c75aeaeb3aaf4078d5fecaf0a
parente159a2e981d2629fa145ab584e8c3853b097d180 (diff)
Assert that we get an id for each file we upload
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rwxr-xr-xfb.py2
1 files changed, 2 insertions, 0 deletions
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