diff options
Diffstat (limited to 'test/utils.js')
-rw-r--r-- | test/utils.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/utils.js b/test/utils.js index 8617348e4..8a1e9a0b6 100644 --- a/test/utils.js +++ b/test/utils.js @@ -8,7 +8,7 @@ var methodExists = function (object, method) { var propertyExists = function (object, property) { it('should have property ' + property + ' implemented', function() { - assert.equal('object', typeof object[property], 'property ' + property + ' is not implemented'); + assert.notEqual('undefined', typeof object[property], 'property ' + property + ' is not implemented'); }); }; |