Skip to content

Commit 1c935a2

Browse files
unit test fix
1 parent 8b203d8 commit 1c935a2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/dev/base/lib/api/services/vector.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ describe("Vector unit tests", () => {
374374

375375
it("should parse stringified zero to number", () => {
376376
const res = vector.parseNumbers({ vector: ["0", "0.0", "-0"] });
377-
expect(res).toEqual([0, 0, 0]);
377+
expect(res).toEqual([0, 0, -0]);
378378
});
379379

380380
it("should parse stringified large numbers to numbers", () => {

0 commit comments

Comments
 (0)