Skip to content

Commit

Permalink
chore: fix FetchToolsCommand unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
edvald committed Sep 1, 2020
1 parent fb83cac commit 0d9ae8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/test/unit/src/commands/util/fetch-tools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ describe("FetchToolsCommand", () => {
{
platform: getPlatform(),
architecture: getArchitecture(),
url: "https://raw.githubusercontent.com/garden-io/garden/master/.dockerignore",
url: "https://raw.githubusercontent.com/garden-io/garden/v0.12.3/.dockerignore",
sha256: "39d86a6cd966898b56f9ac5c701055287433db6418694fc2d95f04ac05817881",
},
],
Expand All @@ -55,7 +55,7 @@ describe("FetchToolsCommand", () => {
})

const expectedPathA = join(GARDEN_GLOBAL_PATH, "tools", "tool-a", "058921ab05f721bb", ".editorconfig")
const expectedPathB = join(GARDEN_GLOBAL_PATH, "tools", "tool-b", "d6920a9696efd755", ".dockerignore")
const expectedPathB = join(GARDEN_GLOBAL_PATH, "tools", "tool-b", "a8601675b580d777", ".dockerignore")

before(async () => {
tmpDir = await makeTempDir()
Expand Down

0 comments on commit 0d9ae8c

Please sign in to comment.