[arvados] updated: 2.4.2-30-gb02d4ba61
git repository hosting
git at public.arvados.org
Tue Sep 20 17:19:04 UTC 2022
Summary of changes:
services/keep-web/handler_test.go | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
via b02d4ba61d1edc005d07e4dfff9c755f92f631b3 (commit)
from 2a2c7bdbfdfcf72abb9940032711c22111e48870 (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 b02d4ba61d1edc005d07e4dfff9c755f92f631b3
Author: Tom Clegg <tom at curii.com>
Date: Tue Sep 20 13:18:33 2022 -0400
19502: Fix test that was expecting incorrect logging.
Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom at curii.com>
diff --git a/services/keep-web/handler_test.go b/services/keep-web/handler_test.go
index 45a21c546..3c0fe4299 100644
--- a/services/keep-web/handler_test.go
+++ b/services/keep-web/handler_test.go
@@ -1261,7 +1261,7 @@ func copyHeader(h http.Header) http.Header {
}
func (s *IntegrationSuite) checkUploadDownloadRequest(c *check.C, h *handler, req *http.Request,
- successCode int, direction string, perm bool, userUuid string, collectionUuid string, filepath string) {
+ successCode int, direction string, perm bool, userUuid string, collectionUuid interface{}, filepath string) {
client := s.testServer.Config.Client
client.AuthToken = arvadostest.AdminToken
@@ -1386,7 +1386,7 @@ func (s *IntegrationSuite) TestDownloadLoggingPermission(c *check.C) {
},
}
s.checkUploadDownloadRequest(c, &h, req, http.StatusOK, "download", true,
- arvadostest.ActiveUserUUID, arvadostest.FooCollection, "foo")
+ arvadostest.ActiveUserUUID, nil, "foo")
}
func (s *IntegrationSuite) TestUploadLoggingPermission(c *check.C) {
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list