summaryrefslogtreecommitdiff
path: root/cli/tools/test_runner.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tools/test_runner.rs')
-rw-r--r--cli/tools/test_runner.rs7
1 files changed, 6 insertions, 1 deletions
diff --git a/cli/tools/test_runner.rs b/cli/tools/test_runner.rs
index 172ca54ea..e91cad011 100644
--- a/cli/tools/test_runner.rs
+++ b/cli/tools/test_runner.rs
@@ -149,7 +149,12 @@ mod tests {
#[test]
fn supports_dirs() {
- let root = test_util::root_path().join("std").join("http");
+ // TODO(caspervonb) generate some fixtures in a temporary directory instead, there's no need
+ // for this to rely on external fixtures.
+ let root = test_util::root_path()
+ .join("test_util")
+ .join("std")
+ .join("http");
println!("root {:?}", root);
let mut matched_urls =
prepare_test_modules_urls(vec![".".to_string()], &root).unwrap();