From 3ba43b75ed5ea265ae6a9d905de4ee61ecd21435 Mon Sep 17 00:00:00 2001 From: David Leal Date: Wed, 26 Apr 2023 11:27:51 -0600 Subject: [PATCH] docs: improve contributing guidelines --- CONTRIBUTING.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d6064dbe..87686af3 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -109,6 +109,9 @@ static void test() { assert(func(...) == ...); // this ensures that the algorithm works as expected // can have multiple checks + + // this lets the user know that the tests passed + printf("All tests have successfully passed!\n"); } /**