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#""#
);
}