diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-04-09 23:35:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-09 23:35:29 +0200 |
commit | 1c7217e3909c72135020ff415e61644e20e1f62c (patch) | |
tree | e7fc2943aec824a3755dc627c7e10fa4f821a1b5 /cli/tests/unit/fetch_test.ts | |
parent | 0fd1fb9329512258064c3c04e3c2d990f3748834 (diff) |
chore: upgrade dependencies (#10094)
This commit upgrades:
- swc_ecmascript
- swc_bundler
- deno_doc
- deno_lint
- dprint-plugin-typescript
Diffstat (limited to 'cli/tests/unit/fetch_test.ts')
-rw-r--r-- | cli/tests/unit/fetch_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/unit/fetch_test.ts b/cli/tests/unit/fetch_test.ts index 6ece3c835..0fb9da8f4 100644 --- a/cli/tests/unit/fetch_test.ts +++ b/cli/tests/unit/fetch_test.ts @@ -35,7 +35,7 @@ function findClosedPortInRange( const listener = Deno.listen({ port }); listener.close(); return port; - } catch (e) { + } catch (_e) { port++; } } @@ -792,7 +792,7 @@ unitTest( fail( "Response.text() didn't throw on a filtered response without a body (type error)", ); - } catch (e) { + } catch (_e) { return; } }, |