aboutsummaryrefslogtreecommitdiffstats
path: root/extras/hs-test/framework_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'extras/hs-test/framework_test.go')
-rwxr-xr-xextras/hs-test/framework_test.go12
1 files changed, 3 insertions, 9 deletions
diff --git a/extras/hs-test/framework_test.go b/extras/hs-test/framework_test.go
index 33bc1f35011..cd43cfe4612 100755
--- a/extras/hs-test/framework_test.go
+++ b/extras/hs-test/framework_test.go
@@ -1,9 +1,9 @@
package main
import (
- "testing"
"io/ioutil"
"os"
+ "testing"
"github.com/edwarnicke/exechelper"
"github.com/stretchr/testify/assert"
@@ -12,17 +12,11 @@ import (
)
func IsPersistent() bool {
- if os.Getenv("HST_PERSIST") == "1" {
- return true
- }
- return false
+ return os.Getenv("HST_PERSIST") == "1"
}
func IsVerbose() bool {
- if os.Getenv("HST_VERBOSE") == "1" {
- return true
- }
- return false
+ return os.Getenv("HST_VERBOSE") == "1"
}
type HstSuite struct {