We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c731e5 commit 601a61dCopy full SHA for 601a61d
1 file changed
prqlc/prqlc-parser/src/test.rs
@@ -1824,7 +1824,7 @@ fn test_dates() {
1824
#[test]
1825
fn test_multiline_string() {
1826
assert_yaml_snapshot!(parse_single(r##"
1827
- derive x = r#"r-string test"#
+ derive x = r"r-string test"
1828
"##).unwrap(), @r###"
1829
---
1830
- VarDef:
@@ -1835,9 +1835,10 @@ fn test_multiline_string() {
1835
name:
1836
Ident: derive
1837
args:
1838
- - Ident: r
+ - Literal:
1839
+ String: r-string test
1840
alias: x
- span: "0:9-39"
1841
+ span: "0:9-37"
1842
"### )
1843
}
1844
0 commit comments