You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.2 KiB
44 lines
1.2 KiB
From b3a3d76815b6f892a86c15da39a3019608290719 Mon Sep 17 00:00:00 2001
|
|
From: David Tolnay <dtolnay@gmail.com>
|
|
Date: Tue, 23 Apr 2019 21:31:54 -0700
|
|
Subject: [PATCH] Update tests for new proc-macro2 escape behavior
|
|
|
|
---
|
|
tests/test.rs | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/tests/test.rs b/tests/test.rs
|
|
index f832da5..85562bf 100644
|
|
--- a/tests/test.rs
|
|
+++ b/tests/test.rs
|
|
@@ -166,7 +166,7 @@ fn test_char() {
|
|
let tokens = quote! {
|
|
#zero #pound #quote #apost #newline #heart
|
|
};
|
|
- let expected = "'\\u{0}' '#' '\\\"' '\\'' '\\n' '\\u{2764}'";
|
|
+ let expected = "'\\u{0}' '#' '\"' '\\'' '\\n' '\\u{2764}'";
|
|
assert_eq!(expected, tokens.to_string());
|
|
}
|
|
|
|
@@ -174,7 +174,7 @@ fn test_char() {
|
|
fn test_str() {
|
|
let s = "\0 a 'b \" c";
|
|
let tokens = quote!(#s);
|
|
- let expected = "\"\\u{0} a \\'b \\\" c\"";
|
|
+ let expected = "\"\\u{0} a 'b \\\" c\"";
|
|
assert_eq!(expected, tokens.to_string());
|
|
}
|
|
|
|
@@ -182,7 +182,7 @@ fn test_str() {
|
|
fn test_string() {
|
|
let s = "\0 a 'b \" c".to_string();
|
|
let tokens = quote!(#s);
|
|
- let expected = "\"\\u{0} a \\'b \\\" c\"";
|
|
+ let expected = "\"\\u{0} a 'b \\\" c\"";
|
|
assert_eq!(expected, tokens.to_string());
|
|
}
|
|
|
|
--
|
|
2.22.0.rc3
|
|
|