Skip to content

Commit 07ccc72

Browse files
authored
chore: pin @std dep (#397)
1 parent ecd958b commit 07ccc72

3 files changed

Lines changed: 21 additions & 3 deletions

File tree

deno.lock

Lines changed: 19 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/jsr_project/mod.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright 2018-2024 the Deno authors. MIT license.
22

33
import { add } from "./mod.ts";
4-
import { assertEquals } from "jsr:@std/assert@0.220/assert_equals";
4+
import { assertEquals } from "jsr:@std/assert@0.221/assert-equals";
55

66
Deno.test("should add in test project", () => {
77
assertEquals(add(1, 2), 3);

tests/jsr_project/mod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright 2018-2024 the Deno authors. MIT license.
22

33
import { parse } from "jsr:@std/csv/parse";
4-
import { assertEquals } from "jsr:@std/assert/assert_equals";
4+
import { assertEquals } from "jsr:@std/assert@0.221/assert-equals";
55
import * as fs from "node:fs";
66

77
export function add(a: number, b: number) {

0 commit comments

Comments
 (0)