Signed-off-by: Igor Gnatenko <ignatenkobrain@fedoraproject.org>
epel9
Igor Gnatenko 6 years ago
parent b8985109a2
commit a1fcbe5df1
No known key found for this signature in database
GPG Key ID: 695714BD1BBC5F4C

@ -0,0 +1,43 @@
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

@ -13,6 +13,8 @@ Summary: Quasi-quoting macro quote!(...)
License: MIT or ASL 2.0
URL: https://crates.io/crates/quote
Source: %{crates_source}
# https://github.com/dtolnay/quote/commit/b3a3d76815b6f892a86c15da39a3019608290719
Patch0001: 0001-Update-tests-for-new-proc-macro2-escape-behavior.patch
ExclusiveArch: %{rust_arches}
%if %{__cargo_skip_build}

Loading…
Cancel
Save