tustvold commented on code in PR #375: URL: https://github.com/apache/arrow-rs-object-store/pull/375#discussion_r2094184618
########## src/parse.rs: ########## @@ -286,6 +286,15 @@ mod tests { "s3://bucket/foo%20bar", (ObjectStoreScheme::AmazonS3, "foo bar"), ), + ( + "s3://bucket/foo bar", + (ObjectStoreScheme::AmazonS3, "foo bar"), + ), + ("s3://bucket/😀", (ObjectStoreScheme::AmazonS3, "😀")), + ( + "s3://bucket/%F0%9F%98%80", + (ObjectStoreScheme::AmazonS3, "😀"), + ), Review Comment: This is an unrelated test I wrote whilst playing around -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org