diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-09-12 11:30:12 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-12 11:30:12 +1000 |
commit | 3285801429eb7a40e022b571b7e3007c3e60250c (patch) | |
tree | 2ddd6c9757a9753b4cd0c21cd93f68937b79b1ab /tests/unit/serve_test.ts | |
parent | 57556ade8c128aeea7340d463b35c86afe1fb4f7 (diff) |
test: remove `DENO_FUTURE` (#25587)
Diffstat (limited to 'tests/unit/serve_test.ts')
-rw-r--r-- | tests/unit/serve_test.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/unit/serve_test.ts b/tests/unit/serve_test.ts index 13f8ba867..4a19d8df2 100644 --- a/tests/unit/serve_test.ts +++ b/tests/unit/serve_test.ts @@ -12,7 +12,6 @@ import { assertThrows, curlRequest, curlRequestWithStdErr, - DENO_FUTURE, execCode, execCode3, fail, @@ -20,7 +19,7 @@ import { } from "./test_util.ts"; // Since these tests may run in parallel, ensure this port is unique to this file -const servePort = DENO_FUTURE ? 4511 : 4502; +const servePort = 4511; const { upgradeHttpRaw, |