Skip to content

Commit 44305d3

Browse files
committed
📦 Upgrade dependencies
1 parent 4a598a6 commit 44305d3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+54
-51
lines changed

denops_std/argument/flags_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.192.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.205.0/testing/asserts.ts";
22
import { parseFlags } from "./flags.ts";
33

44
Deno.test("parseFlags", () => {

denops_std/argument/mod_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.192.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.205.0/testing/asserts.ts";
22
import { parse } from "./mod.ts";
33

44
Deno.test("parse", () => {

denops_std/argument/opts_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.192.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.205.0/testing/asserts.ts";
22
import { parseOpts } from "./opts.ts";
33

44
Deno.test("parseOpts", () => {

denops_std/autocmd/common_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.192.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.205.0/testing/asserts.ts";
22
import { test } from "https://deno.land/x/denops_test@v1.4.0/mod.ts";
33
import { globals } from "../variable/mod.ts";
44
import { define, emit, emitAll, list, remove } from "./common.ts";

denops_std/autocmd/group_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.192.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.205.0/testing/asserts.ts";
22
import { test } from "https://deno.land/x/denops_test@v1.4.0/mod.ts";
33
import { globals } from "../variable/mod.ts";
44
import { group } from "./group.ts";

denops_std/batch/batch_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import { assertEquals } from "https://deno.land/std@0.192.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.205.0/testing/asserts.ts";
22
import {
33
assertSpyCall,
44
assertSpyCalls,
55
spy,
6-
} from "https://deno.land/std@0.192.0/testing/mock.ts";
6+
} from "https://deno.land/std@0.205.0/testing/mock.ts";
77
import { test } from "https://deno.land/x/denops_test@v1.4.0/mod.ts";
88
import { batch, BatchHelper } from "./batch.ts";
99

denops_std/batch/collect_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {
22
assertEquals,
33
assertRejects,
4-
} from "https://deno.land/std@0.192.0/testing/asserts.ts";
4+
} from "https://deno.land/std@0.205.0/testing/asserts.ts";
55
import { test } from "https://deno.land/x/denops_test@v1.4.0/mod.ts";
66
import type { Denops } from "https://deno.land/x/denops_core@v5.0.0/mod.ts";
77
import { collect } from "./collect.ts";

denops_std/buffer/buffer_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {
22
assertEquals,
33
assertRejects,
4-
} from "https://deno.land/std@0.192.0/testing/asserts.ts";
4+
} from "https://deno.land/std@0.205.0/testing/asserts.ts";
55
import { test } from "https://deno.land/x/denops_test@v1.4.0/mod.ts";
66
import { default as Encoding } from "https://cdn.skypack.dev/encoding-japanese@2.0.0/";
77
import * as fn from "../function/mod.ts";

denops_std/buffer/decoration_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.192.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.205.0/testing/asserts.ts";
22
import { test } from "https://deno.land/x/denops_test@v1.4.0/mod.ts";
33
import * as fn from "../function/mod.ts";
44
import * as vimFn from "../function/vim/mod.ts";

denops_std/buffer/fileencoding_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.192.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.205.0/testing/asserts.ts";
22
import { default as Encoding } from "https://cdn.skypack.dev/encoding-japanese@2.0.0/";
33
import { tryDecode } from "./fileencoding.ts";
44

0 commit comments

Comments
 (0)