Skip to content

Commit 1b76f3b

Browse files
committed
lint fix
1 parent ed47f11 commit 1b76f3b

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

__tests__/series.test.ts

+5-3
Original file line numberDiff line numberDiff line change
@@ -657,11 +657,13 @@ describe("series", () => {
657657
expect(actual).toSeriesEqual(expected);
658658
});
659659
test("toTypedArray handles nulls", () => {
660-
const s = pl.Series('ints and nulls', [1, 2, 3, null, 5], pl.UInt8);
660+
const s = pl.Series("ints and nulls", [1, 2, 3, null, 5], pl.UInt8);
661661
expect(() => s.toTypedArray()).toThrow();
662662
expect(() => s.dropNulls().toTypedArray()).not.toThrow();
663-
expect(s.dropNulls().toTypedArray()).toStrictEqual(new Uint8Array([1, 2, 3, 5]));
664-
})
663+
expect(s.dropNulls().toTypedArray()).toStrictEqual(
664+
new Uint8Array([1, 2, 3, 5]),
665+
);
666+
});
665667
});
666668
describe("comparators & math", () => {
667669
test("add/plus", () => {

0 commit comments

Comments
 (0)