From 8f4ef7856a4641561e6bb1de357720cf007977fe Mon Sep 17 00:00:00 2001 From: Yang Xiufeng Date: Tue, 13 Jan 2026 17:57:30 +0800 Subject: [PATCH] ci: update tests --- bindings/nodejs/tests/binding.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bindings/nodejs/tests/binding.js b/bindings/nodejs/tests/binding.js index bec89a34..0ccd51af 100644 --- a/bindings/nodejs/tests/binding.js +++ b/bindings/nodejs/tests/binding.js @@ -358,7 +358,7 @@ Then("Load file with Stage and Select should be equal", async function () { } const expected = [ [-1, 1, 1.0, "'", null, new Date("2011-03-06"), new Date("2011-03-05T22:20:00Z")], - [-2, 2, 2.0, '"', null, new Date("2012-05-31"), new Date("2012-05-31T03:20:00Z")], + [-2, 2, 2.0, '"', "", new Date("2012-05-31"), new Date("2012-05-31T03:20:00Z")], [-3, 3, 3.0, "\\", "NULL", new Date("2016-04-04"), new Date("2016-04-04T03:30:00Z")], ]; assert.deepEqual(ret, expected); @@ -379,7 +379,7 @@ Then("Load file with Streaming and Select should be equal", async function () { } const expected = [ [-1, 1, 1.0, "'", null, new Date("2011-03-06"), new Date("2011-03-05T22:20:00Z")], - [-2, 2, 2.0, '"', null, new Date("2012-05-31"), new Date("2012-05-31T03:20:00Z")], + [-2, 2, 2.0, '"', "", new Date("2012-05-31"), new Date("2012-05-31T03:20:00Z")], [-3, 3, 3.0, "\\", "NULL", new Date("2016-04-04"), new Date("2016-04-04T03:30:00Z")], ]; assert.deepEqual(ret, expected);