aboutsummaryrefslogtreecommitdiffstats
path: root/test/utils.js
diff options
context:
space:
mode:
authorMarek Kotewicz <marek.kotewicz@gmail.com>2015-01-22 03:43:20 +0800
committerMarek Kotewicz <marek.kotewicz@gmail.com>2015-01-22 03:43:20 +0800
commitceb4357a8d66e5112369293b15247f03c561c514 (patch)
tree915e03281096df16c8d351574409fc98fd62aafe /test/utils.js
parentfc986a3fbee02a4fcfbd4e74d9881fc25d5538b4 (diff)
downloadgo-tangerine-ceb4357a8d66e5112369293b15247f03c561c514.tar
go-tangerine-ceb4357a8d66e5112369293b15247f03c561c514.tar.gz
go-tangerine-ceb4357a8d66e5112369293b15247f03c561c514.tar.bz2
go-tangerine-ceb4357a8d66e5112369293b15247f03c561c514.tar.lz
go-tangerine-ceb4357a8d66e5112369293b15247f03c561c514.tar.xz
go-tangerine-ceb4357a8d66e5112369293b15247f03c561c514.tar.zst
go-tangerine-ceb4357a8d66e5112369293b15247f03c561c514.zip
sync api tests running, removed unused pieces of code
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');
});
};