aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-08-01 08:40:07 +0100
committerAleksey Kladov <[email protected]>2018-08-01 08:40:07 +0100
commit966e9db2b83802dfb55d55bd3a26e69dced1bbd7 (patch)
tree6d3bda084eab1221bcad7602aa26a2c307850a72 /tests
parentb9189ed2db8cb1934e677a17fcc6282c66306df1 (diff)
Extract libeditor
Diffstat (limited to 'tests')
-rw-r--r--tests/parser.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/parser.rs b/tests/parser.rs
index 770610974..af2ae11bb 100644
--- a/tests/parser.rs
+++ b/tests/parser.rs
@@ -8,7 +8,7 @@ use testutils::dir_tests;
8#[test] 8#[test]
9fn parser_tests() { 9fn parser_tests() {
10 dir_tests(&["parser/inline", "parser/ok", "parser/err"], |text| { 10 dir_tests(&["parser/inline", "parser/ok", "parser/err"], |text| {
11 let file = parse(text.to_string()); 11 let file = parse(text);
12 dump_tree(&file) 12 dump_tree(&file)
13 }) 13 })
14} 14}