tustvold commented on code in PR #2625:
URL: https://github.com/apache/arrow-rs/pull/2625#discussion_r960732648
##########
object_store/src/azure/client.rs:
##########
@@ -630,9 +630,8 @@ mod tests {
<NextMarker />
</EnumerationResults>";
- let bytes = Bytes::from(S);
let mut _list_blobs_response_internal: ListResultInternal =
- quick_xml::de::from_slice(bytes.as_ref()).unwrap();
+ quick_xml::de::from_str(S).unwrap();
Review Comment:
from_slice was removed by https://github.com/tafia/quick-xml/pull/440
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]