diff options
author | Jay Conrod <jayconrod@google.com> | 2020-10-20 18:18:21 -0400 |
---|---|---|
committer | Bryan C. Mills <bcmills@google.com> | 2020-10-21 00:22:37 +0000 |
commit | cfb087c68324e0af4217ffe75a962ca8383d12c5 (patch) | |
tree | 9dc02d9eac916692af8f8552ed1f3939c1c26163 | |
parent | f121e0eddd64aa0084b916e94c9a540edf859539 (diff) | |
download | go-git-cfb087c68324e0af4217ffe75a962ca8383d12c5.tar.gz |
cmd/go: fix TestScript/test_cache_inputs
Small fix for a new failure in CL 263142
For #41190
Change-Id: I733bc1998d87b505b52d429916c45afe2968a709
Reviewed-on: https://go-review.googlesource.com/c/go/+/264057
Run-TryBot: Jay Conrod <jayconrod@google.com>
TryBot-Result: Go Bot <gobot@golang.org>
Trust: Jay Conrod <jayconrod@google.com>
Reviewed-by: Bryan C. Mills <bcmills@google.com>
-rw-r--r-- | src/cmd/go/testdata/script/test_cache_inputs.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/go/testdata/script/test_cache_inputs.txt b/src/cmd/go/testdata/script/test_cache_inputs.txt index 97ae4af51f..50486e1909 100644 --- a/src/cmd/go/testdata/script/test_cache_inputs.txt +++ b/src/cmd/go/testdata/script/test_cache_inputs.txt @@ -137,7 +137,7 @@ exit 0 package testcache import ( - "io/ioutil" + "io" "os" "testing" ) |