Skip to content

Commit

Permalink
Merge pull request #34 from vim-denops/automation/update-dependencies
Browse files Browse the repository at this point in the history
chore: update @std/streams and @std/testing
  • Loading branch information
lambdalisue authored Aug 5, 2024
2 parents b791e71 + f99e573 commit 67e5daa
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion conf_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
assertObjectMatch,
assertThrows,
} from "jsr:@std/assert@^1.0.0";
import { stub } from "jsr:@std/testing@^0.225.3/mock";
import { stub } from "jsr:@std/testing@^1.0.0/mock";
import { basename, isAbsolute } from "jsr:@std/path@^1.0.1";
import { _internal, getConfig } from "./conf.ts";

Expand Down
2 changes: 1 addition & 1 deletion runner.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { mergeReadableStreams } from "jsr:@std/streams@^0.224.5/merge-readable-streams";
import { mergeReadableStreams } from "jsr:@std/streams@^1.0.0/merge-readable-streams";
import { is } from "jsr:@core/unknownutil@^4.0.0";
import { unreachable } from "jsr:@lambdalisue/errorutil@^1.0.0";
import { type Config, getConfig } from "./conf.ts";
Expand Down
2 changes: 1 addition & 1 deletion stub_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertSpyCall, spy } from "jsr:@std/testing@^0.225.3/mock";
import { assertSpyCall, spy } from "jsr:@std/testing@^1.0.0/mock";
import { assertEquals } from "jsr:@std/assert@^1.0.0";
import type { Denops } from "jsr:@denops/core@^7.0.0";
import { DenopsStub } from "./stub.ts";
Expand Down
2 changes: 1 addition & 1 deletion with_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
assertFalse,
assertRejects,
} from "jsr:@std/assert@^1.0.0";
import { assertSpyCalls, spy, stub } from "jsr:@std/testing@^0.225.3/mock";
import { assertSpyCalls, spy, stub } from "jsr:@std/testing@^1.0.0/mock";
import type { Denops } from "jsr:@denops/core@^7.0.0";
import { withDenops } from "./with.ts";

Expand Down

0 comments on commit 67e5daa

Please sign in to comment.