Skip to content

Commit 64d1e0b

Browse files
committed
tests: submodule: fix declaration of test
The testcase "submodule::lookup::cached" was declared with a single underscore separating the test suide and test name, only. As the clar parser only catches tests with two underscores, it was never executed. Add in the second underscore to actually have it detected and executed.
1 parent 0a93ded commit 64d1e0b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/submodule/lookup.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,8 @@ void test_submodule_lookup__renamed(void)
389389
cl_assert_equal_i(8, data.count);
390390
}
391391

392-
void test_submodule_lookup_cached(void) {
392+
void test_submodule_lookup__cached(void)
393+
{
393394
git_submodule *sm;
394395
git_submodule *sm2;
395396
/* See that the simple tests still pass. */

0 commit comments

Comments
 (0)