Skip to content

Commit

Permalink
Merge pull request #2936 from tejal29/2935
Browse files Browse the repository at this point in the history
fix flake TestGetSetFileValues
  • Loading branch information
priyawadhwa authored Sep 24, 2019
2 parents 4d56abc + 2cffb5e commit 8d4135b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkg/skaffold/deploy/helm_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import (
"os"
"os/exec"
"runtime"
"sort"
"strings"
"testing"

Expand Down Expand Up @@ -837,6 +838,8 @@ func TestGetSetFileValues(t *testing.T) {
testutil.Run(t, test.description, func(t *testutil.T) {
inMap := map[string]bool{}
actual := generateGetFilesArgs(test.files, inMap)
sort.Strings(test.expected)
sort.Strings(actual)
t.CheckDeepEqual(test.expected, actual)
t.CheckDeepEqual(test.expectedMap, inMap)
})
Expand Down

0 comments on commit 8d4135b

Please sign in to comment.