Skip to content

Commit

Permalink
add version v1 onto @std imports
Browse files Browse the repository at this point in the history
  • Loading branch information
imcotton committed Aug 18, 2024
1 parent a17126a commit 31934a3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions tests/main.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as ast from 'jsr:@std/assert';
import { describe, it } from 'jsr:@std/testing/bdd';
import * as ast from 'jsr:@std/assert@1';
import { describe, it } from 'jsr:@std/testing@1/bdd';

import {
main,
Expand Down
6 changes: 3 additions & 3 deletions tests/pbkdf2.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as ast from 'jsr:@std/assert';
import * as hex from 'jsr:@std/encoding/hex';
import { describe, it } from 'jsr:@std/testing/bdd';
import * as ast from 'jsr:@std/assert@1';
import * as hex from 'jsr:@std/encoding@1/hex';
import { describe, it } from 'jsr:@std/testing@1/bdd';

import { encode } from '../src/utils.ts';

Expand Down

0 comments on commit 31934a3

Please sign in to comment.