commit 62e586073d01af1bdc0d0218d0aa7deb1d2f4f25
parent 2b00a53e0211370d81bac66b1e0211d00e6fb0b6
Author: Dan Stillman <dstillman@zotero.org>
Date: Thu, 29 Oct 2015 02:49:31 -0400
concurrent-caller.js -> concurrentCaller.js
Diffstat:
4 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/chrome/content/zotero/xpcom/zotero.js b/chrome/content/zotero/xpcom/zotero.js
@@ -1707,7 +1707,7 @@ Components.utils.import("resource://gre/modules/osfile.jsm");
this.serial = function (fn) {
- Components.utils.import("resource://zotero/concurrent-caller.js");
+ Components.utils.import("resource://zotero/concurrentCaller.js");
var caller = new ConcurrentCaller(1);
caller.setLogger(Zotero.debug);
return function () {
diff --git a/resource/concurrent-caller.js b/resource/concurrentCaller.js
diff --git a/test/tests/syncEngineTest.js b/test/tests/syncEngineTest.js
@@ -15,7 +15,7 @@ describe("Zotero.Sync.Data.Engine", function () {
server = sinon.fakeServer.create();
server.autoRespond = true;
- Components.utils.import("resource://zotero/concurrent-caller.js");
+ Components.utils.import("resource://zotero/concurrentCaller.js");
var caller = new ConcurrentCaller(1);
caller.setLogger(msg => Zotero.debug(msg));
caller.stopOnError = true;
diff --git a/test/tests/syncRunnerTest.js b/test/tests/syncRunnerTest.js
@@ -114,7 +114,7 @@ describe("Zotero.Sync.Runner", function () {
apiKey: apiKey
});
- Components.utils.import("resource://zotero/concurrent-caller.js");
+ Components.utils.import("resource://zotero/concurrentCaller.js");
var caller = new ConcurrentCaller(1);
caller.setLogger(msg => Zotero.debug(msg));
caller.stopOnError = true;