diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-12-14 17:52:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-14 16:52:12 +0000 |
commit | 8d269efbc2826955d853421a6d52cdcdcaf8e577 (patch) | |
tree | b8de0b1bd5db7700170cac010ffe28c5853e69b1 /test_util/src/test_server.rs | |
parent | ac04787c30b67ba9c7fb800eae8361ba419e7f4e (diff) |
refactor(test_util): move servers to a separate module (#21577)
This commit has no functional changes, just moves all the testing
servers to "test_util::servers" module to make "test_util/src/lib.rs"
shorter.
Diffstat (limited to 'test_util/src/test_server.rs')
-rw-r--r-- | test_util/src/test_server.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test_util/src/test_server.rs b/test_util/src/test_server.rs index 6d4851215..6226ffcac 100644 --- a/test_util/src/test_server.rs +++ b/test_util/src/test_server.rs @@ -1,5 +1,5 @@ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. fn main() { - test_util::run_all_servers(); + test_util::servers::run_all_servers(); } |