Skip to content

Commit 2325064

Browse files
committed
chore: fix prettier
1 parent a4c4321 commit 2325064

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
},
4141
"dependencies": {
4242
"binary-search": "^1.3.6",
43-
"cheminfo-types": "^1.9.0",
43+
"cheminfo-types": "^1.10.0",
4444
"fft.js": "^4.0.4",
4545
"is-any-array": "^2.0.1",
4646
"ml-matrix": "^6.12.1",

src/xyObject/__tests__/xyObjectSlotX.test.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ test('xyObjectSlotX', () => {
1010
{ x: 1.9, y: 4 },
1111
];
1212

13-
const expected = [ { x: 1, y: 6 }, { x: 2, y: 4 }];
13+
const expected = [
14+
{ x: 1, y: 6 },
15+
{ x: 2, y: 4 },
16+
];
1417

1518
expect(xyObjectSlotX(arrayXY)).toStrictEqual(expected);
1619

0 commit comments

Comments
 (0)