Skip to content

Commit

Permalink
Fixed issue #1, bad variable-naming in test
Browse files Browse the repository at this point in the history
  • Loading branch information
mde committed Nov 20, 2013
1 parent 894b26b commit 0deeb28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/index.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@

var t = require('../index')
var f = require('../index')
, assert = require("assert")
, tests;

tests = {
'test that false returns the Boolean value `false`': function () {
assert.strictEqual(false, t());
assert.strictEqual(false, f());
}
};

Expand Down

0 comments on commit 0deeb28

Please sign in to comment.