diff --git a/server/controllers/AutomationController.js b/server/controllers/AutomationController.js index 39f2ba930..155d61edc 100644 --- a/server/controllers/AutomationController.js +++ b/server/controllers/AutomationController.js @@ -158,7 +158,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) ); };