From ebe2502af67bba6221fe351da436f1ab366ad3f3 Mon Sep 17 00:00:00 2001 From: Achref Hawech Date: Wed, 6 Jul 2022 13:36:28 +0200 Subject: [PATCH] Fix tests --- src/test/units/TaskListItemComponent.test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/units/TaskListItemComponent.test.js b/src/test/units/TaskListItemComponent.test.js index 49529638..c43e9bf8 100644 --- a/src/test/units/TaskListItemComponent.test.js +++ b/src/test/units/TaskListItemComponent.test.js @@ -134,7 +134,7 @@ describe("Task List Item component", function () { it("has the correct version", function () { expect(this.component .find("td") - .at(10) + .at(11) .children() .first() .props() @@ -145,7 +145,7 @@ describe("Task List Item component", function () { it("has the correct update timestamp", function () { var cellProps = this.component .find("td") - .at(11) + .at(12) .children() .first() .props(); @@ -166,7 +166,7 @@ describe("Task List Item component", function () { it("has the correct debug link", function () { var a = this.component .find("td") - .at(9) + .at(10) .children() .first() .props();