From edc996b1ed3397b7af9bdcb873f6fffcad4c8f63 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Fri, 24 Jun 2016 18:32:35 -0400 Subject: [PATCH] Sanity-check OS.File.DirectoryIterator entry.isDir only on Travis Follow up from 2c2a5a378 --- chrome/content/zotero/xpcom/file.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/file.js b/chrome/content/zotero/xpcom/file.js index 84c01ba8e..c1b6298c0 100644 --- a/chrome/content/zotero/xpcom/file.js +++ b/chrome/content/zotero/xpcom/file.js @@ -734,7 +734,7 @@ Zotero.File = new function(){ iterator = new OS.File.DirectoryIterator(path); yield iterator.forEach(Zotero.Promise.coroutine(function* (entry) { // entry.isDir can be false for some reason on Travis, causing spurious test failures - if (Zotero.isLinux && !entry.isDir && (yield OS.File.stat(entry.path)).isDir) { + if (Zotero.automatedTest && !entry.isDir && (yield OS.File.stat(entry.path)).isDir) { Zotero.debug("Overriding isDir for " + entry.path); entry.isDir = true; }