From 512417973e1842fdf9bdb88d18902dd5218d9860 Mon Sep 17 00:00:00 2001 From: Ryuhei Yoshida Date: Thu, 17 Aug 2023 19:00:16 +0900 Subject: [PATCH] Change assert to follow denoland/deno_std#3445 --- denops/@ddu-sources/vim-lsp.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/denops/@ddu-sources/vim-lsp.ts b/denops/@ddu-sources/vim-lsp.ts index cab690a..b5b88ee 100644 --- a/denops/@ddu-sources/vim-lsp.ts +++ b/denops/@ddu-sources/vim-lsp.ts @@ -7,8 +7,10 @@ import { Denops, fn } from "https://deno.land/x/ddu_vim@v.1.13.0/deps.ts"; import { ActionData } from "https://deno.land/x/ddu_kind_file@v0.5.3/file.ts"; import { relative } from "https://deno.land/std@0.198.0/path/mod.ts"; -import { assert } from "https://deno.land/std@0.198.0/testing/asserts.ts"; -import { assertEquals } from "https://deno.land/std@0.198.0/testing/asserts.ts"; +import { + assert, + assertEquals, +} from "https://deno.land/std@0.198.0/assert/mod.ts"; type Params = { method: string;