diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-02-20 00:34:24 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-19 06:34:24 -0700 |
commit | 2b279ad630651e973d5a31586f58809f005bc925 (patch) | |
tree | 3e3cbeb4126643c75381dd5422e8603a7488bb8a /tools/release | |
parent | eb542bc185c6c4ce1847417a2dfdf04862cd86db (diff) |
chore: move `test_util` to `tests/util/server` (#22444)
As discussed with @mmastrac.
---------
Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com>
Co-authored-by: Matt Mastracci <matthew@mastracci.com>
Diffstat (limited to 'tools/release')
-rw-r--r-- | tools/release/deno_workspace.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/release/deno_workspace.ts b/tools/release/deno_workspace.ts index 7e249cf2d..e55a02b73 100644 --- a/tools/release/deno_workspace.ts +++ b/tools/release/deno_workspace.ts @@ -35,7 +35,7 @@ export class DenoWorkspace { getCliDependencyCrates() { return this.getCliCrate() .descendantDependenciesInRepo() - .filter((c) => c.name !== "test_util"); + .filter((c) => c.name !== "test_server"); } getCliCrate() { |