net: aws: tests: use unicode escapes for unicode characters

.. instead of putting actual multi-byte unicode characters into
the source code which appears to make hotdoc unhappy.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1390>
This commit is contained in:
Tim-Philipp Müller 2023-11-13 12:47:51 +00:00
parent ee3a272859
commit b81b2cee81

View file

@ -92,6 +92,6 @@ mod tests {
#[tokio::test]
async fn test_s3_unicode() {
do_s3_test("s3 🧪 😱").await;
do_s3_test("s3 \u{1F9EA} \u{1F631}").await;
}
}