mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-04-29 12:14:48 +00:00
libs: Fix clippy unnecesary hashes error
- Fix error: unnecessary hashes around raw string literal Fixes: #7902 Signed-off-by: stevenhorsman <steven@uk.ibm.com>
This commit is contained in:
parent
444395050a
commit
9e423bd3d6
@ -245,7 +245,7 @@ mod tests {
|
|||||||
fn test_scoped_resolve_invalid() {
|
fn test_scoped_resolve_invalid() {
|
||||||
scoped_resolve("./root_is_not_absolute_path", ".").unwrap_err();
|
scoped_resolve("./root_is_not_absolute_path", ".").unwrap_err();
|
||||||
scoped_resolve("C:", ".").unwrap_err();
|
scoped_resolve("C:", ".").unwrap_err();
|
||||||
scoped_resolve(r#"\\server\test"#, ".").unwrap_err();
|
scoped_resolve(r"\\server\test", ".").unwrap_err();
|
||||||
scoped_resolve(r#"http://localhost/test"#, ".").unwrap_err();
|
scoped_resolve(r#"http://localhost/test"#, ".").unwrap_err();
|
||||||
// Chinese Unicode characters
|
// Chinese Unicode characters
|
||||||
scoped_resolve(r#"您好"#, ".").unwrap_err();
|
scoped_resolve(r#"您好"#, ".").unwrap_err();
|
||||||
|
Loading…
Reference in New Issue
Block a user