diff --git a/Tests/Reqnroll.Specs/Features/Execution/StepArgumentTransformations.feature b/Tests/Reqnroll.Specs/Features/Execution/StepArgumentTransformations.feature index 8dd558207..f9173c341 100644 --- a/Tests/Reqnroll.Specs/Features/Execution/StepArgumentTransformations.feature +++ b/Tests/Reqnroll.Specs/Features/Execution/StepArgumentTransformations.feature @@ -71,7 +71,7 @@ Scenario: Should be able to convert when multiple converters are returning the s public System.Collections.Generic.List ConvertInDays(Table table) { System.Collections.Generic.List dates = new System.Collections.Generic.List(); - foreach (TableRow row in table.Rows) + foreach (var row in table.Rows) { dates.Add(DateTime.Today.AddDays(int.Parse(row["in days"]))); } @@ -111,7 +111,7 @@ Scenario: Should be able to convert when multiple converters are returning the s public System.Collections.Generic.List ConvertInDays(Table table) { System.Collections.Generic.List dates = new System.Collections.Generic.List(); - foreach (TableRow row in table.Rows) + foreach (var row in table.Rows) { dates.Add(DateTime.Today.AddDays(int.Parse(row["in days"]))); }