]> git.ipfire.org Git - thirdparty/git.git/commit
t-hashmap: stop calling setup() for t_intern() test
authorJeff King <peff@peff.net>
Tue, 20 Aug 2024 05:18:19 +0000 (01:18 -0400)
committerJunio C Hamano <gitster@pobox.com>
Tue, 20 Aug 2024 15:33:18 +0000 (08:33 -0700)
commita6bcb3ca010ed47d26dfa5d5d221f91a46887c2f
tree854673cea11f5d4d64f5fc5e0651f7e7ec1cb9f9
parent5e75e503c4f7eea2e634e5930d164ad79071ad82
t-hashmap: stop calling setup() for t_intern() test

Commit f24a9b78a9 (t-hashmap: mark unused parameters in callback
function, 2024-08-17) noted that the t_intern() does not need its
hashmap parameter, but we have to keep it to conform to the function
pointer interface of setup().

But since the only thing setup() does is create and tear down the
hashmap, we can just skip calling setup() entirely for this case, and
drop the unused parameters. This simplifies the code a bit.

Helped-by: Ghanshyam Thakkar <shyamthakkar001@gmail.com>
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/unit-tests/t-hashmap.c