aboutsummaryrefslogtreecommitdiffstats
path: root/test/utils.js
diff options
context:
space:
mode:
authorMarek Kotewicz <marek.kotewicz@gmail.com>2015-01-22 04:54:51 +0800
committerMarek Kotewicz <marek.kotewicz@gmail.com>2015-01-22 04:54:51 +0800
commitad8e92e9c67b82b0e8156345776bafe1c3e07d51 (patch)
tree9eb59d09860f1600f4048d26580f43576cb45f1e /test/utils.js
parent81ff253e68bbc700ff093adcff0a21469460b4b8 (diff)
parentedfb874527160cee14cca931377e55187b874cbe (diff)
downloaddexon-ad8e92e9c67b82b0e8156345776bafe1c3e07d51.tar
dexon-ad8e92e9c67b82b0e8156345776bafe1c3e07d51.tar.gz
dexon-ad8e92e9c67b82b0e8156345776bafe1c3e07d51.tar.bz2
dexon-ad8e92e9c67b82b0e8156345776bafe1c3e07d51.tar.lz
dexon-ad8e92e9c67b82b0e8156345776bafe1c3e07d51.tar.xz
dexon-ad8e92e9c67b82b0e8156345776bafe1c3e07d51.tar.zst
dexon-ad8e92e9c67b82b0e8156345776bafe1c3e07d51.zip
Merge commit 'eb4984c0d036c1420e782ca136810e851e33fb37' into natspec
Diffstat (limited to 'test/utils.js')
-rw-r--r--test/utils.js2
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');
});
};