diff options
Diffstat (limited to 'crates/ra_syntax/tests')
-rw-r--r-- | crates/ra_syntax/tests/test.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_syntax/tests/test.rs b/crates/ra_syntax/tests/test.rs index 2442c8505..cabd3e9bd 100644 --- a/crates/ra_syntax/tests/test.rs +++ b/crates/ra_syntax/tests/test.rs | |||
@@ -22,7 +22,7 @@ fn lexer_tests() { | |||
22 | fn parser_tests() { | 22 | fn parser_tests() { |
23 | dir_tests(&test_data_dir(), &["parser/inline/ok", "parser/ok"], |text, path| { | 23 | dir_tests(&test_data_dir(), &["parser/inline/ok", "parser/ok"], |text, path| { |
24 | let parse = SourceFile::parse(text); | 24 | let parse = SourceFile::parse(text); |
25 | let errors = parse.errors.as_slice(); | 25 | let errors = parse.errors(); |
26 | assert_eq!( | 26 | assert_eq!( |
27 | errors, | 27 | errors, |
28 | &[] as &[ra_syntax::SyntaxError], | 28 | &[] as &[ra_syntax::SyntaxError], |
@@ -33,7 +33,7 @@ fn parser_tests() { | |||
33 | }); | 33 | }); |
34 | dir_tests(&test_data_dir(), &["parser/err", "parser/inline/err"], |text, path| { | 34 | dir_tests(&test_data_dir(), &["parser/err", "parser/inline/err"], |text, path| { |
35 | let parse = SourceFile::parse(text); | 35 | let parse = SourceFile::parse(text); |
36 | let errors = parse.errors.as_slice(); | 36 | let errors = parse.errors(); |
37 | assert!(!errors.is_empty(), "There should be errors in the file {:?}", path.display()); | 37 | assert!(!errors.is_empty(), "There should be errors in the file {:?}", path.display()); |
38 | parse.debug_dump() | 38 | parse.debug_dump() |
39 | }); | 39 | }); |