Skip to content

Commit 60e6256

Browse files
committed
Fix fmt for parser test
Signed-off-by: Paul-Elliot <peada@free.fr>
1 parent 3c9c04e commit 60e6256

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/parser/test/test.ml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2903,19 +2903,19 @@ let%expect_test _ =
29032903
{|{delim@ocaml[ let x = ]delim[ {err@mdx-error[ here's the error ]} ]err}
29042904
]delim}|};
29052905
[%expect
2906-
"
2906+
{|
29072907
((output
29082908
(((f.ml (1 0) (2 15))
29092909
(code_block (((f.ml (1 7) (1 12)) ocaml) ())
2910-
((f.ml (1 13) (1 22)) \"let x = \")
2910+
((f.ml (1 13) (1 22)) "let x = ")
29112911
((code_block (((f.ml (1 35) (1 44)) mdx-error) ())
2912-
((f.ml (1 45) (1 66)) \"here's the error ]} \"))
2912+
((f.ml (1 45) (1 66)) "here's the error ]} "))
29132913
(paragraph
29142914
(((f.ml (2 8) (2 9)) (word ])) ((f.ml (2 9) (2 14)) (word delim)))))))))
29152915
(warnings
2916-
( \"File \\\"f.ml\\\", line 2, characters 8-9:\\
2917-
\\nUnpaired ']' (end of code).\\
2918-
\\nSuggestion: try '\\\\]'.\")))"]
2916+
( "File \"f.ml\", line 2, characters 8-9:\
2917+
\nUnpaired ']' (end of code).\
2918+
\nSuggestion: try '\\]'.")))|}]
29192919

29202920
let delimited_code_block_with_output =
29212921
test "{delim@ocaml[ foo ]delim[ ]}";

0 commit comments

Comments
 (0)