Skip to content

Commit

Permalink
fix indentation in assert.equal error message
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudhead committed Jun 17, 2010
1 parent 31c46cf commit 8917efe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/assert/macros.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var assert = require('assert');

var messages = {
'equal' : "expected {expected},\n got {actual} ({operator})",
'equal' : "expected {expected},\n\tgot\t {actual} ({operator})",
'notEqual' : "didn't expect {actual} ({operator})",
'throws' : "expected {expected} to be thrown",
'doesNotThrow': "didn't expect {actual} to be thrown",
Expand Down

0 comments on commit 8917efe

Please sign in to comment.