move tools/test-framework -> tests/test-framework

This commit is contained in:
collin 2022-02-28 10:29:05 -08:00
parent 22f605349c
commit 9ff0d3fed3
13 changed files with 3 additions and 2 deletions

View File

@ -31,6 +31,7 @@ members = [
"docs/grammar",
"leo/errors",
"leo/package",
"tests/test-framework",
]
[dependencies.leo-compiler]

View File

@ -55,7 +55,7 @@ version = "0.4"
version = "0.1"
[dev-dependencies.leo-test-framework]
path = "../../tools/test-framework"
path = "../../tests/test-framework"
version = "1.4.0"
[dev-dependencies.criterion]

View File

@ -56,7 +56,7 @@ pub fn run_tests<T: Runner>(runner: &T, expectation_category: &str) {
let mut tests = Vec::new();
let mut test_dir = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
test_dir.push("../../tests/");
test_dir.push("../tests/");
let mut expectation_dir = test_dir.clone();
expectation_dir.push("expectations");