decaffeinate: Run post-processing cleanups on ContactsManagerTests.coffee and 1 other file

This commit is contained in:
decaffeinate 2020-02-17 07:38:06 +00:00 committed by Simon Detheridge
parent 9c06e4fa9a
commit afbc798fda
2 changed files with 15 additions and 2 deletions

View file

@ -1,3 +1,9 @@
/* eslint-disable
no-return-assign,
no-unused-vars,
*/
// TODO: This file was created by bulk-decaffeinate.
// Fix any style issues and re-enable lint.
/*
* decaffeinate suggestions:
* DS102: Remove unnecessary code created because of implicit returns
@ -33,7 +39,7 @@ describe("ContactManager", function() {
return this.callback = sinon.stub();
});
afterEach(() => tk.reset());
afterEach(function() { return tk.reset(); });
describe("touchContact", function() {
beforeEach(function() {

View file

@ -1,3 +1,10 @@
/* eslint-disable
mocha/no-pending-tests,
no-return-assign,
no-unused-vars,
*/
// TODO: This file was created by bulk-decaffeinate.
// Fix any style issues and re-enable lint.
/*
* decaffeinate suggestions:
* DS102: Remove unnecessary code created because of implicit returns
@ -147,6 +154,6 @@ describe("HttpController", function() {
});
});
return describe("with a holding account", () => it("should not return holding accounts"));
return describe("with a holding account", function() { return it("should not return holding accounts"); });
});
});