[ARVADOS] updated: 2.1.0-208-g1885a75ff
Git user
git at public.arvados.org
Wed Dec 9 22:07:20 UTC 2020
Summary of changes:
lib/controller/integration_test.go | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
via 1885a75ffade67a10f76a9bcac97d0978c072915 (commit)
from 611bbeff666694a0932667b73a202fd3a30f3253 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 1885a75ffade67a10f76a9bcac97d0978c072915
Author: Ward Vandewege <ward at curii.com>
Date: Wed Dec 9 17:06:06 2020 -0500
Fix ineffassign warning.
No issue #
Arvados-DCO-1.1-Signed-off-by: Ward Vandewege <ward at curii.com>
diff --git a/lib/controller/integration_test.go b/lib/controller/integration_test.go
index 6ac8c2e33..3418c1f81 100644
--- a/lib/controller/integration_test.go
+++ b/lib/controller/integration_test.go
@@ -350,9 +350,8 @@ func (s *IntegrationSuite) TestS3WithFederatedToken(c *check.C) {
c.Check(err, check.IsNil)
c.Check(string(buf), check.Matches, `.* `+fmt.Sprintf("%d", len(testText))+` +s3://`+coll.UUID+`/test.txt\n`)
- buf, err = exec.Command("s3cmd", append(s3args, "get", "s3://"+coll.UUID+"/test.txt", c.MkDir()+"/tmpfile")...).CombinedOutput()
+ buf, _ = exec.Command("s3cmd", append(s3args, "get", "s3://"+coll.UUID+"/test.txt", c.MkDir()+"/tmpfile")...).CombinedOutput()
// Command fails because we don't return Etag header.
- // c.Check(err, check.IsNil)
flen := strconv.Itoa(len(testText))
c.Check(string(buf), check.Matches, `(?ms).*`+flen+` of `+flen+`.*`)
}
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list