diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-06-18 17:54:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-18 11:54:55 -0400 |
commit | 90c5dcfe79cd010b429e775a3ebcb3c5d78fa6ff (patch) | |
tree | 461a23f50869c7cbe9bf621c60d11bd3eaaa8800 /cli/worker.rs | |
parent | a2969ecd27645bafc7195baa7cfecbebfd8d2bf4 (diff) |
chore(test): move testing utilities to test_util crate (#6360)
Diffstat (limited to 'cli/worker.rs')
-rw-r--r-- | cli/worker.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/worker.rs b/cli/worker.rs index 70cadcc23..4ac1ee6a6 100644 --- a/cli/worker.rs +++ b/cli/worker.rs @@ -394,7 +394,7 @@ mod tests { #[tokio::test] async fn execute_006_url_imports() { - let http_server_guard = crate::test_util::http_server(); + let http_server_guard = test_util::http_server(); let p = std::path::PathBuf::from(env!("CARGO_MANIFEST_DIR")) .parent() .unwrap() |