Skip to content

Commit

Permalink
fix typo in t.notOk()
Browse files Browse the repository at this point in the history
  • Loading branch information
James Halliday committed Nov 28, 2012
1 parent dbb9641 commit 369e7ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ Test.prototype.ok
Test.prototype.notOk
= Test.prototype['false']
= Test.prototype.notok
= function (value, mgs, extra) {
= function (value, msg, extra) {
this._assert(!value, {
message : msg,
operator : 'notOk',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name" : "tape",
"version" : "0.0.4",
"version" : "0.0.5",
"description" : "tap-producing test harness for node and browsers",
"main" : "index.js",
"bin" : {},
Expand Down

0 comments on commit 369e7ee

Please sign in to comment.