Merge pull request #12206 from overleaf/em-camel-case-docupdater

Camel case variables in document-updater

GitOrigin-RevId: 76ad0921cc059878f21639547fad1bff1913bc8b
This commit is contained in:
Eric Mc Sween
2023-03-21 08:06:13 -04:00
committed by Copybot
parent 03f45c02c3
commit 3831416c2f
36 changed files with 406 additions and 456 deletions

View File

@@ -1,6 +1,3 @@
/* eslint-disable
camelcase,
*/
// TODO: This file was created by bulk-decaffeinate.
// Fix any style issues and re-enable lint.
/*
@@ -220,7 +217,7 @@ describe('Getting a document', function () {
])
sinon
.stub(MockWebApi, 'getDocument')
.callsFake((project_id, doc_id, callback) => {
.callsFake((projectId, docId, callback) => {
if (callback == null) {
callback = function () {}
}
@@ -255,7 +252,7 @@ describe('Getting a document', function () {
])
sinon
.stub(MockWebApi, 'getDocument')
.callsFake((project_id, doc_id, callback) => {
.callsFake((projectId, docId, callback) => {
if (callback == null) {
callback = function () {}
}