Skip to content

Commit

Permalink
Fix NPE in SynchronizedAfterSuite
Browse files Browse the repository at this point in the history
  • Loading branch information
avorima committed Dec 5, 2024
1 parent 9ea211b commit fc254ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/env_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ func (e *ionosCloudEnv) setup() {
}

func (e *ionosCloudEnv) teardown() {
if !skipCleanup {
if !skipCleanup && e.api != nil {
By("Deleting environment resources")

By("Requesting the deletion of the data center")
Expand Down

0 comments on commit fc254ec

Please sign in to comment.