[ARVADOS] updated: 1.2.0-87-gc2812519b
Git user
git at public.curoverse.com
Fri Sep 21 14:08:17 EDT 2018
Summary of changes:
services/keep-web/handler_test.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
via c2812519bc3e0486739cadae0a15c1ef792f96ef (commit)
from f0af3b1225e5617b0c2635ff8466d6d8b89e50ca (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 c2812519bc3e0486739cadae0a15c1ef792f96ef
Author: Tom Clegg <tclegg at veritasgenetics.com>
Date: Fri Sep 21 14:07:34 2018 -0400
14236: Fix regexp in test.
Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tclegg at veritasgenetics.com>
diff --git a/services/keep-web/handler_test.go b/services/keep-web/handler_test.go
index 34a2fbd5d..4ea697bbe 100644
--- a/services/keep-web/handler_test.go
+++ b/services/keep-web/handler_test.go
@@ -767,7 +767,7 @@ func (s *IntegrationSuite) TestDeleteLastFile(c *check.C) {
updated = arvados.Collection{}
err = arv.RequestAndDecode(&updated, "GET", "arvados/v1/collections/"+newCollection.UUID, nil, nil)
c.Check(err, check.IsNil)
- c.Check(updated.ManifestText, check.Not(check.Matches), ".*"+fnm+".*")
+ c.Check(updated.ManifestText, check.Not(check.Matches), `(?ms).*\Q`+fnm+`\E.*`)
c.Logf("updated manifest_text %q", updated.ManifestText)
}
c.Check(updated.ManifestText, check.Equals, "")
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list