Skip to content

Commit eb40f8d

Browse files
committed
semicolons
1 parent b4be171 commit eb40f8d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/firestore.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ var processBatchQueue = function (queue) {
8888
doc.delete();
8989
}
9090
});
91-
}
91+
};
9292

9393
MockFirestore.prototype.batch = function () {
9494
var self = this;

test/unit/firestore.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -198,13 +198,13 @@ describe('MockFirestore', function () {
198198
batch.set(db.doc('col/batch-foo'), { foo: 'fooo' });
199199
batch.set(db.doc('col/batch-bar'), { bar: 'barr' });
200200

201-
expect(function () { db.flush() }).to.throw(Error)
201+
expect(function () { db.flush(); }).to.throw(Error);
202202

203203
var promises = [
204204
db.doc('col/batch-foo').get(),
205205
db.doc('col/batch-bar').get()
206-
]
207-
db.flush()
206+
];
207+
db.flush();
208208

209209
Promise.all(promises).then(function (docs) {
210210
expect(docs[0].exists).to.eq(false);

0 commit comments

Comments
 (0)