From 771741c10ca1d64264dc791c5dd1aab34dc1a424 Mon Sep 17 00:00:00 2001 From: Arun Raghavan Date: Thu, 9 Nov 2023 11:50:53 -0500 Subject: [PATCH] Revert "s3: tests: Remove emoji-based tests for now" This reverts commit a49a5dcb11c736897ddadc04173cc46a5806aa00. Now that hotdoc should work with emoji, let's bring the tests back. Part-of: --- net/aws/tests/s3.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/net/aws/tests/s3.rs b/net/aws/tests/s3.rs index 155efe13..fafd4a24 100644 --- a/net/aws/tests/s3.rs +++ b/net/aws/tests/s3.rs @@ -89,4 +89,9 @@ mod tests { async fn test_s3_whitespace() { do_s3_test("s3 test").await; } + + #[tokio::test] + async fn test_s3_unicode() { + do_s3_test("s3 🧪 😱").await; + } }