Merge branch 'master' into 11060-all-visible-repos
[arvados.git] / services / keep-web / server_test.go
index 52fe459ec43ff13c422c1679017de68246a36d1d..500561d69c74a41d18f923c982a7b8397030bf67 100644 (file)
@@ -77,7 +77,9 @@ func (s *IntegrationSuite) Test404(c *check.C) {
        } {
                hdr, body, _ := s.runCurl(c, arvadostest.ActiveToken, "collections.example.com", uri)
                c.Check(hdr, check.Matches, "(?s)HTTP/1.1 404 Not Found\r\n.*")
-               c.Check(body, check.Equals, "")
+               if len(body) > 0 {
+                       c.Check(body, check.Equals, "404 page not found\n")
+               }
        }
 }