From cf33b6a1ee64dfab44898aafe091424537f22430 Mon Sep 17 00:00:00 2001 From: ptaylor Date: Fri, 2 Jun 2023 01:19:29 -0700 Subject: [PATCH] update zfill test --- modules/cudf/test/series/string-tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/cudf/test/series/string-tests.ts b/modules/cudf/test/series/string-tests.ts index d2440e699..38d5e38d8 100644 --- a/modules/cudf/test/series/string-tests.ts +++ b/modules/cudf/test/series/string-tests.ts @@ -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', () => {