You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
integration/git: use static subtest names in TestFetchRepositoryInfo* (#5375)
The `TestFetchRepositoryInfo*` tests in `integration/libs/git` passed
runtime values into `t.Run` — temporary workspace paths containing UUIDs
and `t.TempDir()` paths — so each subtest got a different name on every
run. In aggregated test output this shows up as thousands of distinct
one-off test names instead of a single stable entry.
This replaces the dynamic names with static ones (`subdir`, `root`,
`non-existent`) by giving each table case an explicit `name` field.
A sweep over every `t.Run` call in the repository found this to be the
only place with this pattern.
This pull request and its description were written by Isaac.
0 commit comments