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)