mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2025-03-04 23:07:20 +00:00
clippy::non_ascii_literal: Use unicode literals
This commit is contained in:
parent
db79afd302
commit
cd1514b8f9
1 changed files with 1 additions and 2 deletions
|
@ -190,8 +190,7 @@ mod tests {
|
|||
use crate::util::text::TextEncoding;
|
||||
use std::io::Cursor;
|
||||
|
||||
#[allow(clippy::non_ascii_literal)]
|
||||
const TEST_STRING: &str = "løft¥";
|
||||
const TEST_STRING: &str = "l\u{00f8}ft\u{00a5}";
|
||||
|
||||
#[test]
|
||||
fn text_decode() {
|
||||
|
|
Loading…
Add table
Reference in a new issue