diff --git a/tests/tasks/scratch/scratch_build_scratch.cue b/tests/tasks/scratch/scratch_build_scratch.cue index 8eb1e08e..fb0473c1 100644 --- a/tests/tasks/scratch/scratch_build_scratch.cue +++ b/tests/tasks/scratch/scratch_build_scratch.cue @@ -5,13 +5,10 @@ import ( ) engine.#Plan & { - actions: { - - build: engine.#Build & { - source: engine.#Scratch - dockerfile: contents: "FROM scratch" - // Assert that output is engine.#Scratch - output: engine.#Scratch - } + actions: build: engine.#Build & { + source: engine.#Scratch + dockerfile: contents: "FROM scratch" + // Assert that output is engine.#Scratch + output: engine.#Scratch } }