aboutsummaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
Diffstat (limited to 'internal')
-rw-r--r--internal/conf/conf_test.go4
-rw-r--r--internal/testutil/golden.go7
2 files changed, 6 insertions, 5 deletions
diff --git a/internal/conf/conf_test.go b/internal/conf/conf_test.go
index 0030ea52..51ccf93c 100644
--- a/internal/conf/conf_test.go
+++ b/internal/conf/conf_test.go
@@ -37,10 +37,6 @@ func TestMustAsset(t *testing.T) {
}
func TestInit(t *testing.T) {
- if IsWindowsRuntime() {
- return
- }
-
ini.PrettyFormat = false
defer func() {
MustInit("")
diff --git a/internal/testutil/golden.go b/internal/testutil/golden.go
index fa584d1b..2aaad5ce 100644
--- a/internal/testutil/golden.go
+++ b/internal/testutil/golden.go
@@ -9,6 +9,7 @@ import (
"flag"
"io/ioutil"
"regexp"
+ "runtime"
"testing"
"github.com/stretchr/testify/assert"
@@ -25,8 +26,12 @@ func Update(name string) bool {
}
// AssertGolden compares what's got and what's in the golden file. It updates
-// the golden file on-demand.
+// the golden file on-demand. It does nothing when the runtime is "windows".
func AssertGolden(t testing.TB, path string, update bool, got interface{}) {
+ if runtime.GOOS == "windows" {
+ return
+ }
+
t.Helper()
data := marshal(t, got)