Tests only pass if swh-web-client is patched line this:
```
@@ -558,7 +566,7 @@ def content_raw(self, swhid: SWHIDish, **req_args) -> Iterator[bytes]:
)
r.raise_for_status()
- yield from r.iter_content(chunk_size=None, decode_unicode=False)
+ yield r.content
def origin_search(
self,
```
Otherwise, `r.iter_content` blocks on the second iteration.