From 003889836a18d96af454577193b899d50722d5f2 Mon Sep 17 00:00:00 2001 From: Bidek56 Date: Fri, 27 Dec 2024 20:04:24 -0500 Subject: [PATCH] Fixing linting errors --- __tests__/dataframe.test.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/__tests__/dataframe.test.ts b/__tests__/dataframe.test.ts index a8fdf2ff..6f628e24 100644 --- a/__tests__/dataframe.test.ts +++ b/__tests__/dataframe.test.ts @@ -73,8 +73,12 @@ describe("dataframe", () => { │ 3 ┆ three ┆ {false,true,"three",3} │ └─────┴───────┴────────────────────────┘`; expect(actual.toString()).toStrictEqual(expected); - expect(actual.getColumn('name').toArray()).toEqual(rows.map(e=>e['name'])); - expect(actual.getColumn('attributes').toArray()).toMatchObject(rows.map(e=>e['attributes'])); + expect(actual.getColumn("name").toArray()).toEqual( + rows.map((e) => e["name"]), + ); + expect(actual.getColumn("attributes").toArray()).toMatchObject( + rows.map((e) => e["attributes"]), + ); }); test("dtypes", () => { const expected = [pl.Float64, pl.String];