Skip to content

Commit

Permalink
test: fix test
Browse files Browse the repository at this point in the history
If include "v", it must be captured too.
Because it cause failed to update.
  • Loading branch information
Omochice committed Nov 13, 2023
1 parent 2497b54 commit 8b1e05f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/deno/deno-land.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ describe("deno.land for import map", () => {
"path": "https://deno.land/std@v0.204.0/path/mod.ts",
}
}`,
currentValue: "0.204.0",
currentValue: "v0.204.0",
depName: "https://deno.land/std",
},
{
Expand All @@ -53,7 +53,7 @@ describe("deno.land for import map", () => {
"some": "https://deno.land/x/some_module@v0.1.0",
}
}`,
currentValue: "0.1.0",
currentValue: "v0.1.0",
depName: "https://deno.land/x/some_module",
},
] as const;
Expand Down

0 comments on commit 8b1e05f

Please sign in to comment.