On 1/11/2023 5:13 PM, Matthew John Cheetham via GitGitGadget wrote: > +static void credential_write_strvec(FILE *fp, const char *key, > + const struct strvec *vec) > +{ > + int i = 0; > + const char *full_key = xstrfmt("%s[]", key); > + for (; i < vec->nr; i++) { style nit: use "int i;" and "for (i = 0; ..." > test_expect_success 'http auth anonymous no challenge' ' > test_when_finished "per_test_cleanup" && > - start_http_server && > + > + cat >auth.config <<-EOF && > + [auth] > + allowAnonymous = true > + EOF > + > + start_http_server --auth-config="$TRASH_DIRECTORY/auth.config" && I see that you added auth.allowAnonymous and --auth-config options in Patch 6, so perhaps this test change could move to that patch. Thanks, -Stolee