Fix Prettier

This commit is contained in:
Penar Musaraj
2019-11-15 10:28:46 -05:00
parent abf215a0e4
commit 655e610357
6 changed files with 9 additions and 37 deletions

View File

@ -141,11 +141,7 @@ QUnit.test("closestPostNumberFor", assert => {
QUnit.test("closestDaysAgoFor", assert => {
const postStream = buildStream(1231);
postStream.set("timelineLookup", [
[1, 10],
[3, 8],
[5, 1]
]);
postStream.set("timelineLookup", [[1, 10], [3, 8], [5, 1]]);
assert.equal(postStream.closestDaysAgoFor(1), 10);
assert.equal(postStream.closestDaysAgoFor(2), 10);