From dd05b26dccc70374f06f9365196f704e45a22eef Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Mon, 20 Jun 2011 07:06:28 +0000 Subject: [PATCH] Fix typo --- chrome/content/zotero/tools/testTranslators/translatorTester.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/tools/testTranslators/translatorTester.js b/chrome/content/zotero/tools/testTranslators/translatorTester.js index 36af6e9d4..40364aaf2 100644 --- a/chrome/content/zotero/tools/testTranslators/translatorTester.js +++ b/chrome/content/zotero/tools/testTranslators/translatorTester.js @@ -329,7 +329,7 @@ Zotero_TranslatorTester.prototype._objectCompare = function(x, y) { for(p in y) { if (y[p]) { switch(typeof(y[p])) { case 'object': - if (!_objectCompare(y[p],x[p])) { + if (!this._objectCompare(y[p],x[p])) { return returner(p); }; break;