Skip to content

Commit

Permalink
std to 0.200.0; fix assertEquals ref
Browse files Browse the repository at this point in the history
  • Loading branch information
bradclawsie committed Aug 31, 2023
1 parent 7d3c091 commit 5d15680
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mod.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
decode as hexDecode,
encode as hexEncode,
} from "https://deno.land/std@0.182.0/encoding/hex.ts";
} from "https://deno.land/std@0.200.0/encoding/hex.ts";

/**
* convert a string to its byte array representation
Expand Down
2 changes: 1 addition & 1 deletion test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.182.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.200.0/assert/mod.ts";
import { bytesToHex, bytesToString, hexToBytes, stringToBytes } from "./mod.ts";

Deno.test("round trip hex value", () => {
Expand Down

0 comments on commit 5d15680

Please sign in to comment.