Skip to content

Commit

Permalink
Update development dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
hugoalh committed Nov 19, 2023
1 parent 0dbad55 commit 3b407c8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
> **ℹ️ Notice:**
>
> - The date format is according to ISO 8601 standard.
> - Values in italic format are subject to change.
> - Versions which not in the list are also end of life.
## Report Vulnerability
Expand Down
4 changes: 2 additions & 2 deletions exfetch.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { assert } from "https://deno.land/std@0.206.0/assert/assert.ts";
import { assertEquals } from "https://deno.land/std@0.206.0/assert/assert_equals.ts";
import { assert } from "https://deno.land/std@0.207.0/assert/assert.ts";
import { assertEquals } from "https://deno.land/std@0.207.0/assert/assert_equals.ts";
import { ExFetch } from "./exfetch.ts";
Deno.test("Mono 1", {
permissions: {
Expand Down
4 changes: 2 additions & 2 deletions header/link.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { assertEquals } from "https://deno.land/std@0.206.0/assert/assert_equals.ts";
import { assertThrows } from "https://deno.land/std@0.206.0/assert/assert_throws.ts";
import { assertEquals } from "https://deno.land/std@0.207.0/assert/assert_equals.ts";
import { assertThrows } from "https://deno.land/std@0.207.0/assert/assert_throws.ts";
import { HTTPHeaderLink } from "./link.ts";
Deno.test("From String Good 1", { permissions: "none" }, () => {
const instance = new HTTPHeaderLink(`<https://example.com>; rel="preconnect"`);
Expand Down
6 changes: 3 additions & 3 deletions header/retry_after.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { assert } from "https://deno.land/std@0.206.0/assert/assert.ts";
import { assertEquals } from "https://deno.land/std@0.206.0/assert/assert_equals.ts";
import { assertThrows } from "https://deno.land/std@0.206.0/assert/assert_throws.ts";
import { assert } from "https://deno.land/std@0.207.0/assert/assert.ts";
import { assertEquals } from "https://deno.land/std@0.207.0/assert/assert_equals.ts";
import { assertThrows } from "https://deno.land/std@0.207.0/assert/assert_throws.ts";
import { HTTPHeaderRetryAfter } from "./retry_after.ts";
Deno.test("From String Good 1", { permissions: "none" }, () => {
const instance = new HTTPHeaderRetryAfter("Wed, 21 Oct 2015 07:28:00 GMT");
Expand Down

0 comments on commit 3b407c8

Please sign in to comment.