From 07c621382c1518c301ad0085adca1dfc1a03bbcb Mon Sep 17 00:00:00 2001 From: Alexander Pavel Date: Fri, 2 Nov 2018 16:05:41 -0700 Subject: [PATCH] test/e2e/memcached_test.go: comment out gopkg version during tests --- test/e2e/memcached_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/e2e/memcached_test.go b/test/e2e/memcached_test.go index b6b16cc60f1..88ce30fc16d 100644 --- a/test/e2e/memcached_test.go +++ b/test/e2e/memcached_test.go @@ -93,6 +93,8 @@ func TestMemcached(t *testing.T) { // and comment out the current branch. branchRe := regexp.MustCompile("([ ]+)(.+#osdk_branch_annotation)") gopkg = branchRe.ReplaceAll(gopkg, []byte("$1# $2")) + versionRe := regexp.MustCompile("([ ]+)(.+#osdk_version_annotation)") + gopkg = versionRe.ReplaceAll(gopkg, []byte("$1# $2")) // Plug in the fork to test against so `dep ensure` can resolve dependencies // correctly. gopkgString := string(gopkg)