From 63ca8bc91a2e34009a7e274a3105223040db6a37 Mon Sep 17 00:00:00 2001 From: DJMcNab <36049421+DJMcNab@users.noreply.github.com> Date: Thu, 20 Dec 2018 15:09:22 +0000 Subject: Change parser tests dir to inline/ok and inline/err --- crates/ra_syntax/tests/test.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crates/ra_syntax/tests') diff --git a/crates/ra_syntax/tests/test.rs b/crates/ra_syntax/tests/test.rs index 539c4435b..15f70c090 100644 --- a/crates/ra_syntax/tests/test.rs +++ b/crates/ra_syntax/tests/test.rs @@ -24,7 +24,7 @@ fn lexer_tests() { #[test] fn parser_tests() { - dir_tests(&["parser/inline", "parser/ok"], |text, path| { + dir_tests(&["parser/inline/ok", "parser/ok"], |text, path| { let file = SourceFileNode::parse(text); let errors = file.errors(); assert_eq!( @@ -35,7 +35,7 @@ fn parser_tests() { ); dump_tree(file.syntax()) }); - dir_tests(&["parser/err"], |text, path| { + dir_tests(&["parser/err", "parser/inline/err"], |text, path| { let file = SourceFileNode::parse(text); let errors = file.errors(); assert_ne!( -- cgit v1.2.3