Skip to content

Commit

Permalink
style: remove unnecessary log
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-FFFFFF committed Nov 28, 2023
1 parent 9415be7 commit 7ce5c46
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/utils/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ func GetLogger() *logger.Logger {
func PreCheckDeployTests(t *testing.T) {
// Skip if we haven't set the `TERRATEST_DEPLOY` variable.
if value := os.Getenv("TERRATEST_DEPLOY"); value == "" {
t.Log("`TERRATEST_DEPLOY` must be set to `true` for deployment tests! - Skipping...")
t.Skip()
t.Skip("`TERRATEST_DEPLOY` must be set to `true` for deployment tests! - Skipping...")
}
// These variables cause a failure if not set.
variables := []string{
Expand Down

0 comments on commit 7ce5c46

Please sign in to comment.