From b094a7be96012c7d2807406daf60b90a1014c5e1 Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Thu, 24 Apr 2025 19:58:32 -0700 Subject: [PATCH] [Easy] Fix docs in absltest, missed this when changing the interface in the CL. PiperOrigin-RevId: 751239029 --- absl/testing/absltest.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/absl/testing/absltest.py b/absl/testing/absltest.py index 287ff26..b76950f 100644 --- a/absl/testing/absltest.py +++ b/absl/testing/absltest.py @@ -2520,9 +2520,10 @@ def shardTestCaseNames( input test case names, based on the shard index and total shard count. Args: - names: A sequence of test case names. + iterator: An iterator over the shards, where each iteration returns the + next shard index. + ordered_names: A sequence of test case names. shard_index: The index of the current shard. - total_shards: The total number of shards. Returns: A sequence of test case names for the current shard.