From: Pietro Cerutti Date: Tue, 27 Mar 2018 16:49:55 +0000 (+0000) Subject: acutest: update with latest upstream (documentation fixes) X-Git-Tag: neomutt-20180512~81 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e9f10a2df9fdfb0cbda324f8781c4e0b01d9232a;p=neomutt acutest: update with latest upstream (documentation fixes) --- diff --git a/test/acutest.h b/test/acutest.h index 79bb09363..e27490a85 100644 --- a/test/acutest.h +++ b/test/acutest.h @@ -85,10 +85,10 @@ /* printf-like macro for outputting an extra information about a failure. * * Note it does not output anything if there was not (yet) failed condition - * in the current test. Intended use is to output some computated output + * in the current test. Intended use is to output some computed output * versus the expected value, e.g. like this: * - * if(!TEST_CHECK(produced != expected) == 0)) { + * if(!TEST_CHECK(produced == expected)) { * TEST_MSG("Expected: %d", expected); * TEST_MSG("Produced: %d", produced); * }