diff options
| author | 2026-02-21 18:22:44 +0800 | |
|---|---|---|
| committer | 2026-02-21 18:22:44 +0800 | |
| commit | ae8b0c08048a6a3b80e6625797fbb28319d3d694 (patch) | |
| tree | c31bd0e8e3d31f05a58e709004b454141daa4dbf /objectstore/packed/read_test.go | |
| parent | objectstore/{loose,packed}: Use iolimit (diff) | |
| signature | No signature | |
objectstore/packed: Use SplitSeq
Diffstat (limited to 'objectstore/packed/read_test.go')
| -rw-r--r-- | objectstore/packed/read_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/objectstore/packed/read_test.go b/objectstore/packed/read_test.go index ef0157da..8cee3b62 100644 --- a/objectstore/packed/read_test.go +++ b/objectstore/packed/read_test.go @@ -197,7 +197,7 @@ func findDeltaObjectWithResolvedSizeMismatch(t *testing.T, testRepo *testgit.Tes } verifyOut := testRepo.Run(t, "verify-pack", "-v", idxFiles[0]) - for _, line := range strings.Split(strings.TrimSpace(verifyOut), "\n") { + for line := range strings.SplitSeq(strings.TrimSpace(verifyOut), "\n") { fields := strings.Fields(line) if len(fields) < 7 { continue |
