diff options
author | Nadrieril | 2019-08-07 21:57:51 +0200 |
---|---|---|
committer | Nadrieril | 2019-08-07 21:57:51 +0200 |
commit | a01cf8ad53a3839d13aa99a589ba0f2aa796d511 (patch) | |
tree | b3f636de15e3c593a010d2099289434165cd303a /dhall/src/phase | |
parent | 6654d441e5741013a8618907773ac54101e3fdf2 (diff) |
Remove an annoying redundancy in the test harness
Diffstat (limited to 'dhall/src/phase')
-rw-r--r-- | dhall/src/phase/resolve.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dhall/src/phase/resolve.rs b/dhall/src/phase/resolve.rs index 0609694..0b29513 100644 --- a/dhall/src/phase/resolve.rs +++ b/dhall/src/phase/resolve.rs @@ -110,13 +110,13 @@ mod spec_tests { macro_rules! import_success { ($name:ident, $path:expr) => { - make_spec_test!(Import, Success, $name, &("success/".to_owned() + $path)); + make_spec_test!(Import, Success, $name, &("../dhall-lang/tests/import/success/".to_owned() + $path)); }; } // macro_rules! import_failure { // ($name:ident, $path:expr) => { - // make_spec_test!(Import, Failure, $name, &("failure/".to_owned() + $path)); + // make_spec_test!(Import, Failure, $name, &("../dhall-lang/tests/import/failure/".to_owned() + $path)); // }; // } |