From 990a3f6727276d2ae57b5dd61a53154f72357531 Mon Sep 17 00:00:00 2001 From: Henry Schimke Date: Tue, 11 Oct 2022 08:47:01 -0500 Subject: [PATCH] add real unicode, but it probably won't test correctly --- src/qrcode/detector/DetectorTest.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/qrcode/detector/DetectorTest.rs b/src/qrcode/detector/DetectorTest.rs index 3496574..4a61a1d 100644 --- a/src/qrcode/detector/DetectorTest.rs +++ b/src/qrcode/detector/DetectorTest.rs @@ -16,7 +16,7 @@ fn test_uri() { #[test] fn test_unicode() { - test_encode_decode("\u{3484}\u{f8a7}\u{a1e7}"); + test_encode_decode("πŸ’ΈπŸŽ²πŸͺœ"); } fn test_encode_decode(value: &str) { @@ -59,4 +59,4 @@ fn make_larger(input: &BitMatrix, factor: u32) -> BitMatrix { } } return output; -} \ No newline at end of file +}