Skip to content

Commit a53ca9b

Browse files
author
cloud-sdk-js
committed
Changes from lint:fix
1 parent ff29965 commit a53ca9b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/temporal-de-serializers/src/temporal-de-serializers-v4.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,9 @@ describe('edmToTs()', () => {
6565
actual = deserializeDateTimeOffsetToTemporal(
6666
`${dateTimePrefix}:17.987+03:00`
6767
);
68-
expect(actual.epochMilliseconds).toBe((datePrefixUnix - 3600 * 3 + 17) * 1000 + 987);
68+
expect(actual.epochMilliseconds).toBe(
69+
(datePrefixUnix - 3600 * 3 + 17) * 1000 + 987
70+
);
6971
});
7072

7173
it('should parse Edm.Duration to Temporal.Duration', () => {

0 commit comments

Comments
 (0)