[ARVADOS] updated: 47e64f9150929a7ee27c5f107b06bd4218e90db6
git at public.curoverse.com
git at public.curoverse.com
Sat Aug 9 14:06:18 EDT 2014
Summary of changes:
sdk/python/.gitignore | 2 +-
services/keepproxy/keepproxy_test.go | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
via 47e64f9150929a7ee27c5f107b06bd4218e90db6 (commit)
via 406337ce20f68286bfa785a7d29858787d07fe0d (commit)
from 4feb925895f5af5ee9b88d47b72b286d26f65a69 (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 47e64f9150929a7ee27c5f107b06bd4218e90db6
Author: Tom Clegg <tom at curoverse.com>
Date: Sat Aug 9 14:06:09 2014 -0400
3551: gitignore python/sdk/tests/tmp
diff --git a/sdk/python/.gitignore b/sdk/python/.gitignore
index 090c08e..105d068 100644
--- a/sdk/python/.gitignore
+++ b/sdk/python/.gitignore
@@ -2,4 +2,4 @@
/dist/
/*.egg
/*.egg-info
-/tmp
+/tests/tmp
commit 406337ce20f68286bfa785a7d29858787d07fe0d
Author: Tom Clegg <tom at curoverse.com>
Date: Sat Aug 9 14:03:57 2014 -0400
3551: Make keepproxy tests pass when permission signatures are enabled
in keepstore.
diff --git a/services/keepproxy/keepproxy_test.go b/services/keepproxy/keepproxy_test.go
index 22b1f30..2a74a19 100644
--- a/services/keepproxy/keepproxy_test.go
+++ b/services/keepproxy/keepproxy_test.go
@@ -155,7 +155,7 @@ func (s *ServerRequiredSuite) TestPutAskGet(c *C) {
var rep int
var err error
hash2, rep, err = kc.PutB([]byte("foo"))
- c.Check(hash2, Equals, fmt.Sprintf("%s+3", hash))
+ c.Check(hash2, Matches, fmt.Sprintf(`^%s\+3(\+.+)?$`, hash))
c.Check(rep, Equals, 2)
c.Check(err, Equals, nil)
log.Print("PutB")
@@ -237,7 +237,7 @@ func (s *ServerRequiredSuite) TestGetDisabled(c *C) {
{
hash2, rep, err := kc.PutB([]byte("baz"))
- c.Check(hash2, Equals, fmt.Sprintf("%s+3", hash))
+ c.Check(hash2, Matches, fmt.Sprintf(`^%s\+3(\+.+)?$`, hash))
c.Check(rep, Equals, 2)
c.Check(err, Equals, nil)
log.Print("PutB")
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list