X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/469ea187586ea8017e26874c2d80414ce7571fae..3eb7d9fc324d53f241bce67463c61d69d4f8377a:/sdk/python/tests/test_arv_get.py diff --git a/sdk/python/tests/test_arv_get.py b/sdk/python/tests/test_arv_get.py index 73ef2475b9..d12739f6f6 100644 --- a/sdk/python/tests/test_arv_get.py +++ b/sdk/python/tests/test_arv_get.py @@ -88,7 +88,7 @@ class ArvadosGetTestCase(run_test_server.TestCaseWithServers, def test_get_block(self): # Get raw data using a block locator - blk = re.search(' (acbd18\S+\+A\S+) ', self.col_manifest).group(1) + blk = re.search(r' (acbd18\S+\+A\S+) ', self.col_manifest).group(1) r = self.run_get([blk, '-']) self.assertEqual(0, r) self.assertEqual(b'foo', self.stdout.getvalue())