Skip to content

Commit

Permalink
fix specs tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gasparnagy committed Jan 29, 2024
1 parent 4739155 commit b0bd438
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Scenario: Should be able to convert when multiple converters are returning the s
public System.Collections.Generic.List<DateTime> ConvertInDays(Table table)
{
System.Collections.Generic.List<DateTime> dates = new System.Collections.Generic.List<DateTime>();
foreach (TableRow row in table.Rows)
foreach (var row in table.Rows)
{
dates.Add(DateTime.Today.AddDays(int.Parse(row["in days"])));
}
Expand Down Expand Up @@ -111,7 +111,7 @@ Scenario: Should be able to convert when multiple converters are returning the s
public System.Collections.Generic.List<DateTime> ConvertInDays(Table table)
{
System.Collections.Generic.List<DateTime> dates = new System.Collections.Generic.List<DateTime>();
foreach (TableRow row in table.Rows)
foreach (var row in table.Rows)
{
dates.Add(DateTime.Today.AddDays(int.Parse(row["in days"])));
}
Expand Down

0 comments on commit b0bd438

Please sign in to comment.