Skip to content

Commit 0badeff

Browse files
committed
[AUTOMATED]: Prettier Code Styling
1 parent 4c40084 commit 0badeff

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

packages/firestore/test/unit/api/timestamp.test.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,13 @@ describe('Timestamp', () => {
3636

3737
it('_toISOString', () => {
3838
expect(new Timestamp(0, 1001)._toISOString()).to.equal(
39-
'1970-01-01T00:00:00.000001001Z');
39+
'1970-01-01T00:00:00.000001001Z'
40+
);
4041
expect(new Timestamp(0, 1000)._toISOString()).to.equal(
41-
'1970-01-01T00:00:00.000001000Z');
42+
'1970-01-01T00:00:00.000001000Z'
43+
);
4244
expect(new Timestamp(1570664492, 537000000)._toISOString()).to.equal(
43-
'2019-10-09T23:41:32.537000000Z');
45+
'2019-10-09T23:41:32.537000000Z'
46+
);
4447
});
4548
});

0 commit comments

Comments
 (0)