Skip to content

Commit 07a3c6b

Browse files
Lint
1 parent 2054a80 commit 07a3c6b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/firestore/test/unit/util/sorted_set.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,12 +171,12 @@ describe('SortedSet', () => {
171171

172172
it('diff sorted sets with empty sets', () => {
173173
{
174-
let { added, removed } = computeDiffs(['a'], []);
174+
const { added, removed } = computeDiffs(['a'], []);
175175
expect(added).to.have.members([]);
176176
expect(removed).to.have.members(['a']);
177177
}
178178
{
179-
let { added, removed } = computeDiffs([], ['a']);
179+
const { added, removed } = computeDiffs([], ['a']);
180180
expect(added).to.have.members(['a']);
181181
expect(removed).to.have.members([]);
182182
}

0 commit comments

Comments
 (0)