Skip to content

Commit

Permalink
Replace "byte_string" with "raw_string" in test
Browse files Browse the repository at this point in the history
  • Loading branch information
lambda-fairy authored Jan 4, 2024
1 parent 2d32f9d commit ab66965
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions maud/tests/basic_syntax.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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#"<this byte_string="false" 123="123" 123usize 2.5 true of-course></this>"#
r#"<this raw_string="false" 123="123" 123usize 2.5 true of-course></this>"#
);
}

Expand Down

0 comments on commit ab66965

Please sign in to comment.