From 69ee3750b8583e2b76451b5c9a84cfc3a3d5eab3 Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Wed, 8 Dec 2021 16:45:54 -0700 Subject: [PATCH] cue fmt Signed-off-by: Richard Jones --- tests/plan/hello-europa/main.cue | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/tests/plan/hello-europa/main.cue b/tests/plan/hello-europa/main.cue index 615590a7..f268a18d 100644 --- a/tests/plan/hello-europa/main.cue +++ b/tests/plan/hello-europa/main.cue @@ -1,14 +1,12 @@ package main import ( - "alpha.dagger.io/dagger/engine" - "alpha.dagger.io/os" + "alpha.dagger.io/dagger/engine" + "alpha.dagger.io/os" ) engine.#Plan & { - actions: { - sayHello: os.#Container & { - command: "echo Hello Europa!" - } - } -} \ No newline at end of file + actions: sayHello: os.#Container & { + command: "echo Hello Europa!" + } +}