diff --git a/test/test.js b/test/test.js index e117df73..37b7a075 100644 --- a/test/test.js +++ b/test/test.js @@ -106,7 +106,12 @@ })(testLog[i]); testLog[i].contains = function (needle) { - return this.indexOf(needle) > -1; + for (var i = 0; i < this.length; i++) { + if (this[i] == needle) { + return true; + } + } + return false; }; } }