Skip to content

Commit

Permalink
Remove unnecessary hashes around raw string literal
Browse files Browse the repository at this point in the history
  • Loading branch information
bluk committed Sep 29, 2023
1 parent 1c8b6ef commit 9e3fd77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -452,10 +452,10 @@ mod tests {

#[test]
fn test_empty_rules() -> Result<(), serde_json::Error> {
let json = r#"
let json = r"
{
}
"#;
";
let rules: LsRules = serde_json::from_str(json)?;
assert_eq!(rules.name, None);
assert_eq!(rules.description, None);
Expand Down

0 comments on commit 9e3fd77

Please sign in to comment.