Skip to content

Commit

Permalink
fix broken assertions; remove key length check for maintainability's …
Browse files Browse the repository at this point in the history
…sake
  • Loading branch information
boneskull committed Jan 15, 2019
1 parent 309c73b commit d3571ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/assertions.js
Expand Up @@ -10,7 +10,7 @@ exports.mixinMochaAssertions = function(expect) {
Object.prototype.toString.call(v) === '[object Object]' &&
typeof v.output === 'string' &&
typeof v.code === 'number' &&
Object.keys(v).length === 2
Array.isArray(v.args)
);
}
})
Expand Down

0 comments on commit d3571ed

Please sign in to comment.