Skip to content

Commit

Permalink
Fix: correctly support rowNumbers like 14.1 with automation (#1105)
Browse files Browse the repository at this point in the history
  • Loading branch information
gnarf authored May 22, 2024
1 parent c1e0688 commit 2b88c5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/controllers/AutomationController.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ const getTestByRowNumber = async ({ testPlanRun, testRowNumber, context }) => {
context
);
return tests.find(
test => parseInt(test.rowNumber, 10) === parseInt(testRowNumber, 10)
test => String(test.rowNumber) === String(testRowNumber)
);
};

Expand Down

0 comments on commit 2b88c5f

Please sign in to comment.