Skip to content

Commit

Permalink
test: fix assertions
Browse files Browse the repository at this point in the history
  • Loading branch information
vvagaytsev committed Sep 17, 2024
1 parent 317c0e3 commit fb6a6a1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions core/test/unit/src/garden.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3087,6 +3087,7 @@ describe("Garden", () => {
const internal = {
basePath: garden.projectRoot,
configFilePath: join(garden.projectRoot, "runs.garden.yml"),
disabled: false,
parentName: "my-runs",
templateName: "template-runs",
inputs: { names: [runNameA, runNameB] },
Expand All @@ -3096,7 +3097,6 @@ describe("Garden", () => {
kind: "Run",
type: "exec",
name: runNameA,
disabled: false,
spec: {
command: ["echo", runNameA],
},
Expand All @@ -3109,7 +3109,6 @@ describe("Garden", () => {
kind: "Run",
type: "exec",
name: runNameB,
disabled: false,
spec: {
command: ["echo", runNameB],
},
Expand Down

0 comments on commit fb6a6a1

Please sign in to comment.