Skip to content

Commit 0116b6a

Browse files
committed
💪 Use assert/mod instead of testing/asserts
1 parent a9860a0 commit 0116b6a

31 files changed

+34
-34
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/[email protected]/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/[email protected]/assert/mod.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/[email protected]/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/[email protected]/assert/mod.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/[email protected]/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/[email protected]/assert/mod.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/[email protected]/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/[email protected]/assert/mod.ts";
22
import { test } from "https://deno.land/x/[email protected]/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/[email protected]/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/[email protected]/assert/mod.ts";
22
import { test } from "https://deno.land/x/[email protected]/mod.ts";
33
import { globals } from "../variable/mod.ts";
44
import { group } from "./group.ts";

denops_std/batch/batch_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/[email protected]/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/[email protected]/assert/mod.ts";
22
import {
33
assertSpyCall,
44
assertSpyCalls,

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/[email protected]/testing/asserts.ts";
4+
} from "https://deno.land/[email protected]/assert/mod.ts";
55
import { test } from "https://deno.land/x/[email protected]/mod.ts";
66
import type { Denops } from "https://deno.land/x/[email protected]/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/[email protected]/testing/asserts.ts";
4+
} from "https://deno.land/[email protected]/assert/mod.ts";
55
import { test } from "https://deno.land/x/[email protected]/mod.ts";
66
import { default as Encoding } from "https://cdn.skypack.dev/[email protected]/";
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/[email protected]/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/[email protected]/assert/mod.ts";
22
import { test } from "https://deno.land/x/[email protected]/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/[email protected]/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/[email protected]/assert/mod.ts";
22
import { default as Encoding } from "https://cdn.skypack.dev/[email protected]/";
33
import { tryDecode } from "./fileencoding.ts";
44

0 commit comments

Comments
 (0)