Skip to content

Commit

Permalink
Merge f3b06cd into dbd0a43
Browse files Browse the repository at this point in the history
  • Loading branch information
smackesey committed Jan 12, 2014
2 parents dbd0a43 + f3b06cd commit 88bd5ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/test/assert.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ assert.noFileContent = function (file, reg) {
var regex = pair[1];
assert.file(file);
var body = fs.readFileSync(file, 'utf8');
assert.ok(!regex.test(body), file + ' did not match \'' + regex + '\'.');
assert.ok(!regex.test(body), file + ' matched \'' + regex + '\'.');
});
};

Expand Down

0 comments on commit 88bd5ea

Please sign in to comment.