Skip to content

Commit 2eb5f51

Browse files
committed
clippy: remove excess escaping on raw strings
1 parent 33b8a34 commit 2eb5f51

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

graphql_client/tests/operation_selection.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ pub struct Heights;
1616
)]
1717
pub struct Echo;
1818

19-
const HEIGHTS_RESPONSE: &str = r##"{"mountainHeight": 224, "buildingHeight": 12}"##;
20-
const ECHO_RESPONSE: &str = r##"{"echo": "tiramisù"}"##;
19+
const HEIGHTS_RESPONSE: &str = r#"{"mountainHeight": 224, "buildingHeight": 12}"#;
20+
const ECHO_RESPONSE: &str = r#"{"echo": "tiramisù"}"#;
2121

2222
#[test]
2323
fn operation_selection_works() {

0 commit comments

Comments
 (0)