Skip to content

Commit

Permalink
update zfill test
Browse files Browse the repository at this point in the history
  • Loading branch information
trxcllnt committed Jun 2, 2023
1 parent 05c8dc1 commit cf33b6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/cudf/test/series/string-tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ test('Series.pad (right, fill)', () => {

test('Series.zfill', () => {
const a = Series.new(['1234', '-9876', '+0.34', '-342567', null]);
expect([...a.zfill(6)]).toStrictEqual(['001234', '0-9876', '0+0.34', '-342567', null]);
expect([...a.zfill(6)]).toStrictEqual(['001234', '-09876', '+00.34', '-342567', null]);
});

test('Series.isHex', () => {
Expand Down

0 comments on commit cf33b6a

Please sign in to comment.