diff options
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/integration/lsp_tests.rs | 2 | ||||
-rw-r--r-- | cli/tests/unit/serve_test.ts | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/cli/tests/integration/lsp_tests.rs b/cli/tests/integration/lsp_tests.rs index 9135698b2..5164975cf 100644 --- a/cli/tests/integration/lsp_tests.rs +++ b/cli/tests/integration/lsp_tests.rs @@ -4788,7 +4788,7 @@ fn lsp_completions_auto_import() { "source": "./b.ts", "data": { "exportName": "foo", - "exportMapKey": "foo|6768|file:///a/b", + "exportMapKey": "foo|6799|file:///a/b", "moduleSpecifier": "./b.ts", "fileName": "file:///a/b.ts" }, diff --git a/cli/tests/unit/serve_test.ts b/cli/tests/unit/serve_test.ts index 8ab5209df..fd7cc869a 100644 --- a/cli/tests/unit/serve_test.ts +++ b/cli/tests/unit/serve_test.ts @@ -3077,16 +3077,16 @@ Deno.test( assertEquals( "hello world!", - await curlRequest(["https://localhost:9000/path", "-k"]), + await curlRequest(["https://localhost:8000/path", "-k"]), ); assertEquals( "hello world!", - await curlRequest(["https://localhost:9000/path", "-k", "--http2"]), + await curlRequest(["https://localhost:8000/path", "-k", "--http2"]), ); assertEquals( "hello world!", await curlRequest([ - "https://localhost:9000/path", + "https://localhost:8000/path", "-k", "--http2", "--http2-prior-knowledge", |