Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
nfuden committed Dec 2, 2024
1 parent 807a1d1 commit 98cb9ec
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package full_envoy_validation

import (
"context"
"fmt"

"github.com/solo-io/gloo/test/kubernetes/e2e"
testdefaults "github.com/solo-io/gloo/test/kubernetes/e2e/defaults"
Expand Down Expand Up @@ -88,10 +89,11 @@ func (s *testingSuite) TestLargeConfiguration() {
err = s.testInstallation.Actions.Kubectl().DeleteFileSafe(s.ctx, validation.ExampleUpstream)
s.Assertions.NoError(err, "can delete example upstream")
})

err := s.testInstallation.Actions.Kubectl().ApplyFile(s.ctx, validation.ExampleUpstream, "-n", s.testInstallation.Metadata.InstallNamespace)
s.Assert().NoError(err)

err = s.testInstallation.Actions.Kubectl().ApplyFile(s.ctx, validation.LargeConfiguration, "-n",
s.testInstallation.Metadata.InstallNamespace)
s.Assert().NoError(err)
fmt.Println(err)
}

0 comments on commit 98cb9ec

Please sign in to comment.