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);