Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2023-11-13 15:47:51 +0300
committerTim-Philipp Müller <tim@centricular.com>2023-11-13 15:58:25 +0300
commitb81b2cee81bd5106f15e610da5ff31424ec30947 (patch)
tree25361ccce180db1dd4f70d1e09ec69a496dd31d3
parentee3a2728590380795379955487d52781c9354f58 (diff)
net: aws: tests: use unicode escapes for unicode charactersgstreamer-1.22.7
.. 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>
-rw-r--r--net/aws/tests/s3.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/aws/tests/s3.rs b/net/aws/tests/s3.rs
index fafd4a24d..1b2cc728e 100644
--- a/net/aws/tests/s3.rs
+++ b/net/aws/tests/s3.rs
@@ -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;
}
}