[arvados] updated: 2.6.0-549-g1298d37ebe
git repository hosting
git at public.arvados.org
Mon Aug 28 20:27:09 UTC 2023
Summary of changes:
sdk/python/tests/test_util.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
via 1298d37ebe4b6558ebeac68915208e3fa5405968 (commit)
from 312bc8bb5bb01f8dc3fbf98a98a5de402172ba88 (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 1298d37ebe4b6558ebeac68915208e3fa5405968
Author: Brett Smith <brett.smith at curii.com>
Date: Mon Aug 28 16:26:41 2023 -0400
20836: Update test_select for Py<3.8 compatibility
Arvados-DCO-1.1-Signed-off-by: Brett Smith <brett.smith at curii.com>
diff --git a/sdk/python/tests/test_util.py b/sdk/python/tests/test_util.py
index f111abcf4a..75d4a89e30 100644
--- a/sdk/python/tests/test_util.py
+++ b/sdk/python/tests/test_util.py
@@ -214,5 +214,5 @@ class KeysetListAllTestCase(unittest.TestCase):
self.assertEqual(actual, [item])
calls = list_func.call_args_list
self.assertTrue(len(calls) >= 2, "list_func() not called enough to exhaust items")
- for call in calls:
- self.assertEqual(set(call.kwargs.get('select', ())), expect_select)
+ for args, kwargs in calls:
+ self.assertEqual(set(kwargs.get('select', ())), expect_select)
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list