20318: Fix flaky test.
authorTom Clegg <tom@curii.com>
Fri, 2 Feb 2024 20:47:34 +0000 (15:47 -0500)
committerTom Clegg <tom@curii.com>
Fri, 2 Feb 2024 20:49:40 +0000 (15:49 -0500)
Hash in "put" test should not have changed to a hash+size locator in
commit ff3db3f54ab58f9f2d4578765438af41b2d2d550.

refs #20318

Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom@curii.com>

sdk/go/keepclient/keepclient_test.go

index fe133fe2cbd08f69abdf74efcc93838943d2f2f5..94591bd0642d175b4b40158f6259fa87f4dee483 100644 (file)
@@ -530,7 +530,7 @@ func (s *StandaloneSuite) TestPutB(c *C) {
 }
 
 func (s *StandaloneSuite) TestPutHR(c *C) {
-       hash := fmt.Sprintf("%x+3", md5.Sum([]byte("foo")))
+       hash := fmt.Sprintf("%x", md5.Sum([]byte("foo")))
 
        st := &StubPutHandler{
                c:                    c,