Skip to content

Commit

Permalink
Fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszcl committed Aug 30, 2024
1 parent 50b5fe1 commit c2d1bf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/testconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ func LoadSecretEnvsFromFiles() error {
logger.Debug().Msgf("No test secrets file found at %s", path)
continue
}
return errors.Wrapf(err, "error reading test secrets file at %s", path)
return fmt.Errorf("error reading test secrets file at %s", path)
}

// Set env vars from file only if they are not already set
Expand Down

0 comments on commit c2d1bf1

Please sign in to comment.