On Thu, Jun 19, 2025 at 2:15 PM Karthik Nayak <karthik.188@xxxxxxxxx> wrote: > > Christian Couder <christian.couder@xxxxxxxxx> writes: [...] > > + git -C server remote add otherLop "https://invalid.invalid" && > > + git -C server config remote.otherLop.token "fooBar" && > > + git -C server config remote.otherLop.stuff "baz" && > > + git -C server config remote.otherLop.partialCloneFilter "blob:limit=10k" && > > + test_when_finished "git -C server remote remove otherLop" && > > + test_config -C server promisor.sendFields "partialCloneFilter, token" && > > What about testing only 'comma' separated and only 'space' separated > fields, since we support those too. I think it would only test the following 2 lines from fields_from_config(): string_list_split_in_place(fields_list, fields, ", ", -1); string_list_remove_empty_items(fields_list, 0); which should be already tested separately in some string_list C tests. So I don't think it's worth it. Thanks.