diff options
author | Aleksey Kladov <[email protected]> | 2019-02-20 13:48:06 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-02-20 13:48:06 +0000 |
commit | 86a67dce25f11ba9803a5727f77c02fd1f49e2c0 (patch) | |
tree | d02a22f02908fd3c89e50845a06a89b997220fc2 /crates/tools | |
parent | 45fc91cc470fa91d5b8905fea2cab4d42bbe72b3 (diff) |
fix tests
Diffstat (limited to 'crates/tools')
-rw-r--r-- | crates/tools/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/tools/src/lib.rs b/crates/tools/src/lib.rs index ef9c613a7..0a10d2737 100644 --- a/crates/tools/src/lib.rs +++ b/crates/tools/src/lib.rs | |||
@@ -14,7 +14,7 @@ pub use teraron::{Mode, Overwrite, Verify}; | |||
14 | pub type Result<T> = std::result::Result<T, failure::Error>; | 14 | pub type Result<T> = std::result::Result<T, failure::Error>; |
15 | 15 | ||
16 | pub const GRAMMAR: &str = "crates/ra_syntax/src/grammar.ron"; | 16 | pub const GRAMMAR: &str = "crates/ra_syntax/src/grammar.ron"; |
17 | const GRAMMAR_DIR: &str = "crates/ra_syntax/src/grammar"; | 17 | const GRAMMAR_DIR: &str = "crates/ra_syntax/src/parsing/grammar"; |
18 | const OK_INLINE_TESTS_DIR: &str = "crates/ra_syntax/tests/data/parser/inline/ok"; | 18 | const OK_INLINE_TESTS_DIR: &str = "crates/ra_syntax/tests/data/parser/inline/ok"; |
19 | const ERR_INLINE_TESTS_DIR: &str = "crates/ra_syntax/tests/data/parser/inline/err"; | 19 | const ERR_INLINE_TESTS_DIR: &str = "crates/ra_syntax/tests/data/parser/inline/err"; |
20 | 20 | ||