Skip to content

Commit b217339

Browse files
committed
style(json-pack): 💄 run Prettier
1 parent 0d1d4af commit b217339

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/json-pack/cbor/__tests__/CborEncoderDag.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,9 @@ describe('only extension = 42 is permitted', () => {
102102

103103
describe('floats', () => {
104104
test('always encodes floats as double precision 64 bits', () => {
105-
const floats = [0.1, 0.2, 0.3, 0.4, 0.5, -0.1, -0.2, -0.3, -0.4, -0.5, 1.1, 1.12, 1.123, 1.1234, 0.12, 0.123, 0.1234];
105+
const floats = [
106+
0.1, 0.2, 0.3, 0.4, 0.5, -0.1, -0.2, -0.3, -0.4, -0.5, 1.1, 1.12, 1.123, 1.1234, 0.12, 0.123, 0.1234,
107+
];
106108
const sizes = new Set<number>();
107109
for (const float of floats) {
108110
const encoded = encoder.encode(float);

0 commit comments

Comments
 (0)