From 9803f100ac4c9915d776a47ad870a89a5ef70eca Mon Sep 17 00:00:00 2001 From: netil Date: Thu, 24 Oct 2024 17:24:54 +0900 Subject: [PATCH] skip: update 4 --- test/internals/text-spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/internals/text-spec.ts b/test/internals/text-spec.ts index fef9411a4..56d119204 100644 --- a/test/internals/text-spec.ts +++ b/test/internals/text-spec.ts @@ -1266,10 +1266,10 @@ describe("TEXT", () => { chart = util.generate(args); const tickNodes = chart.$.svg.select(`.${$AXIS.axisY}`).selectAll("g.tick"); - const translateValues = [401, 365, 331, 295, 260, 225, 189, 154, 118, 83, 47, 12]; + const translateValues = [401, 366, 331, 295, 260, 225, 189, 154, 118, 83, 47, 12]; tickNodes.each(function(d, i) { - expect(util.parseNum(this.getAttribute("transform"))).to.be.closeTo(translateValues[i], 1); + expect(util.parseNum(this.getAttribute("transform"))).to.be.closeTo(translateValues[i], 2); }); chart.destroy();