diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-07-25 15:30:28 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-25 15:30:28 +1000 |
commit | 5f44148e83bb0056b7a361dd6a1bf28d11f3116d (patch) | |
tree | e73ff318a69cabedf33a962be6fa6c73e6775f3e /tests/unit/http_test.ts | |
parent | 84b7504d0fdccc07b9f7412408c954ae07765ccb (diff) |
chore: update to `std@2024.07.19` (#24715)
Diffstat (limited to 'tests/unit/http_test.ts')
-rw-r--r-- | tests/unit/http_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/http_test.ts b/tests/unit/http_test.ts index 03c30965f..6d3543e44 100644 --- a/tests/unit/http_test.ts +++ b/tests/unit/http_test.ts @@ -2,7 +2,7 @@ // deno-lint-ignore-file no-deprecated-deno-api -import { Buffer, BufReader, BufWriter } from "@std/io/mod.ts"; +import { Buffer, BufReader, BufWriter } from "@std/io"; import { TextProtoReader } from "../testdata/run/textproto.ts"; import { assert, @@ -13,7 +13,7 @@ import { delay, fail, } from "./test_util.ts"; -import { join } from "@std/path/mod.ts"; +import { join } from "@std/path"; const listenPort = 4507; const listenPort2 = 4508; |