Skip to content

Commit 9746c2e

Browse files
fix(lint): apply biome formatter fix to corrwith.test.ts
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent b5bdc63 commit 9746c2e

1 file changed

Lines changed: 8 additions & 10 deletions

File tree

tests/stats/corrwith.test.ts

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -199,17 +199,15 @@ describe("corrWith – with DataFrame", () => {
199199
it("property: correlating a DataFrame with itself on all columns returns 1 or NaN", () => {
200200
fc.assert(
201201
fc.property(
202-
fc
203-
.integer({ min: 3, max: 5 })
204-
.chain((len) =>
205-
fc.array(
206-
fc.array(fc.float({ noNaN: true, noDefaultInfinity: true }), {
207-
minLength: len,
208-
maxLength: len,
209-
}),
210-
{ minLength: 1, maxLength: 3 },
211-
),
202+
fc.integer({ min: 3, max: 5 }).chain((len) =>
203+
fc.array(
204+
fc.array(fc.float({ noNaN: true, noDefaultInfinity: true }), {
205+
minLength: len,
206+
maxLength: len,
207+
}),
208+
{ minLength: 1, maxLength: 3 },
212209
),
210+
),
213211
(cols) => {
214212
const data: Record<string, number[]> = {};
215213
for (let i = 0; i < cols.length; i++) {

0 commit comments

Comments
 (0)