Commit 304879d6 authored by Martin Blanchard's avatar Martin Blanchard
Browse files

client/cas.py: Fix assertion in batch downloading client

#93
parent e49aeff1
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -283,7 +283,7 @@ class Downloader:
            try:
                batch_response = self.__cas_stub.BatchReadBlobs(batch_request)
                for response in batch_response.responses:
                    assert response.digest.hash in digests
                    assert response.digest in digests

                    read_blobs.append(response.data)