From 589197b4161001485f6708b80442e96aca33eeba Mon Sep 17 00:00:00 2001 From: Priya Wadhwa Date: Mon, 1 Oct 2018 14:56:46 -0700 Subject: [PATCH] Fix travis @ HEAD I merged a contributor's PR which modifed the HasFilepathPrefix function to take an additional argument, but the PR hadn't been rebased. One of the liting tests in Travis caught this bug. --- integration/integration_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/integration_test.go b/integration/integration_test.go index 67cb7ebbe..e6e4f8959 100644 --- a/integration/integration_test.go +++ b/integration/integration_test.go @@ -314,7 +314,7 @@ func filterDiff(f []fileDiff) []fileDiff { for _, diff := range f { isWhitelisted := false for _, p := range allowedDiffPaths { - if util.HasFilepathPrefix(diff.Name, p) { + if util.HasFilepathPrefix(diff.Name, p, false) { isWhitelisted = true break }