From 89f79a83494360a61f89ee7d04681dbcdebc956b Mon Sep 17 00:00:00 2001 From: Josh Duff Date: Thu, 29 Jan 2015 19:53:02 -0600 Subject: [PATCH] Fixing backwards t.end explanation t.end asserts that the "err" object is not truthy https://github.com/substack/tape/blob/master/lib/test.js#L323 --- readme.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.markdown b/readme.markdown index 3a920ed5..7a3263f5 100644 --- a/readme.markdown +++ b/readme.markdown @@ -106,7 +106,7 @@ the `n`th, or after `t.end()` is called, they will generate errors. ## t.end(err) Declare the end of a test explicitly. If `err` is passed in `t.end` will assert -that it is non-falsey. +that it is falsey. ## t.fail(msg)