From ab669657a700ed80f5fc2ba35a04b4d76cf6ecbf Mon Sep 17 00:00:00 2001 From: Chris Wong Date: Thu, 4 Jan 2024 15:25:39 +1100 Subject: [PATCH] Replace "byte_string" with "raw_string" in test --- maud/tests/basic_syntax.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maud/tests/basic_syntax.rs b/maud/tests/basic_syntax.rs index 015895f6..c2c5dc5f 100644 --- a/maud/tests/basic_syntax.rs +++ b/maud/tests/basic_syntax.rs @@ -201,10 +201,10 @@ fn raw_string_literals_in_attribute_names() { #[test] fn other_literals_in_attribute_names() { - let result = html! { this r#"byte_string"#="false" 123="123" 123usize "2.5" true of-course {} }; + let result = html! { this r#"raw_string"#="false" 123="123" 123usize "2.5" true of-course {} }; assert_eq!( result.into_string(), - r#""# + r#""# ); }