Skip to content

Commit 75e02a3

Browse files
committed
fix: focusing tests before wouldn't work, moving if statementinside fixes it
1 parent 67cda32 commit 75e02a3

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

test/system/system_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -686,9 +686,9 @@ var _ = Describe("Kratix", func() {
686686
})
687687
})
688688

689-
if getEnvOrDefault("TEST_SKIP_BUCKET_CHECK", "false") != "true" {
690-
Describe("filepathMode set to none", func() {
691-
It("manages output files from multiple resource requests", func() {
689+
Describe("filepathMode set to none", func() {
690+
It("manages output files from multiple resource requests", func() {
691+
if getEnvOrDefault("TEST_SKIP_BUCKET_CHECK", "false") != "true" {
692692
bashPromise.Spec.DestinationSelectors = []v1alpha1.PromiseScheduling{{
693693
MatchLabels: map[string]string{
694694
"environment": "filepathmode-none",
@@ -744,9 +744,9 @@ var _ = Describe("Kratix", func() {
744744
ContainSubstring(fmt.Sprintf("%s.yaml", rrNameOne)),
745745
ContainSubstring(fmt.Sprintf("%s.yaml", rrNameTwo)),
746746
))
747-
})
747+
}
748748
})
749-
}
749+
})
750750
})
751751

752752
func terraformRequest(name string) string {

0 commit comments

Comments
 (0)