From 62b58f7e39fc0cef3f0b290464da20430e731747 Mon Sep 17 00:00:00 2001 From: Joel Longtine Date: Fri, 7 Jan 2022 16:46:43 -0700 Subject: [PATCH] cue fmt Signed-off-by: Joel Longtine --- tests/tasks/scratch/scratch_build_scratch.cue | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) 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 } }