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.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/cli/tools/test_runner.rs b/cli/tools/test_runner.rs
index 599a95059..64cff7e0f 100644
--- a/cli/tools/test_runner.rs
+++ b/cli/tools/test_runner.rs
@@ -44,8 +44,7 @@ pub fn prepare_test_modules_urls(
for path in include_paths {
let p = fs_util::normalize_path(&root_path.join(path));
if p.is_dir() {
- let test_files =
- crate::fs_util::collect_files(vec![p], vec![], is_supported).unwrap();
+ let test_files = fs_util::collect_files(&[p], &[], is_supported).unwrap();
let test_files_as_urls = test_files
.iter()
.map(|f| Url::from_file_path(f).unwrap())