Browse Source

ccanlint: use positive description for test_pass_valgrind_noleaks

A bit more awkward, but more consistent with everything else.
Rusty Russell 15 years ago
parent
commit
0f76c8b337
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tools/ccanlint/tests/tests_pass_valgrind.c

+ 1 - 1
tools/ccanlint/tests/tests_pass_valgrind.c

@@ -193,7 +193,7 @@ REGISTER_TEST(tests_pass_valgrind);
 
 
 struct ccanlint tests_pass_valgrind_noleaks = {
 struct ccanlint tests_pass_valgrind_noleaks = {
 	.key = "tests_pass_valgrind_noleaks",
 	.key = "tests_pass_valgrind_noleaks",
-	.name = "Module's run and api tests leak memory",
+	.name = "Module's run and api tests have no memory leaks",
 	.check = do_leakcheck_vg,
 	.check = do_leakcheck_vg,
 	.needs = "tests_pass_valgrind"
 	.needs = "tests_pass_valgrind"
 };
 };