@@ -2,12 +2,13 @@ package render
22
33import (
44 "bytes"
5- "github.com/onsi/ginkgo/v2"
65 "os"
76 "path/filepath"
87 "strings"
98 "sync"
109
10+ "github.com/onsi/ginkgo/v2"
11+
1112 "github.com/loft-sh/devspace/cmd"
1213 "github.com/loft-sh/devspace/cmd/flags"
1314 "github.com/loft-sh/devspace/e2e/framework"
@@ -49,7 +50,11 @@ var _ = DevSpaceDescribe("build", func() {
4950 err = renderCmd .RunDefault (f )
5051 framework .ExpectNoError (err )
5152 content := strings .TrimSpace (stdout .String ()) + "\n "
52- framework .ExpectLocalFileContentsImmediately (filepath .Join (tempDir , "rendered.txt" ), content )
53+
54+ framework .ExpectLocalFileContentsImmediately (
55+ filepath .Join (tempDir , "rendered.txt" ),
56+ content ,
57+ )
5358 })
5459
5560 ginkgo .It ("should render kubectl deployments" , func () {
@@ -71,7 +76,10 @@ var _ = DevSpaceDescribe("build", func() {
7176 err = renderCmd .RunDefault (f )
7277 framework .ExpectNoError (err )
7378 content := strings .TrimSpace (stdout .String ()) + "\n "
74- framework .ExpectLocalFileContentsImmediately (filepath .Join (tempDir , "rendered.txt" ), content )
79+ framework .ExpectLocalFileContentsImmediately (
80+ filepath .Join (tempDir , "rendered.txt" ),
81+ content ,
82+ )
7583 })
7684})
7785
0 commit comments