We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c32b5d commit c2fbb9cCopy full SHA for c2fbb9c
1 file changed
tests/benchmark/test_memory_benchmark.py
@@ -185,7 +185,7 @@ def test_manifest_cache_deduplication_efficiency() -> None:
185
FileFormat,
186
ManifestEntry,
187
ManifestEntryStatus,
188
- read_manifest_list,
+ _manifests,
189
write_manifest,
190
write_manifest_list,
191
)
@@ -255,9 +255,8 @@ def test_manifest_cache_deduplication_efficiency() -> None:
255
) as list_writer:
256
list_writer.add_manifests(manifests_to_include)
257
258
- # Read the manifest list (this populates the cache)
259
- input_file = io.new_input(list_path)
260
- list(read_manifest_list(input_file))
+ # Read the manifest list using _manifests (this populates the cache)
+ _manifests(io, list_path)
261
262
# Analyze cache efficiency
263
cache_entries = len(_manifest_cache)
0 commit comments