Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Oct 25, 2024
1 parent df86c9e commit 4265859
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
1, a , 2020-10-01: 1 a 1/10/2020,
1, a , 2020-10-01: 1 a 2020-10-01,
1, a , null : 1 a ,
1, a , 0001-01-01: 1 a 1/01/0001,
1, bbbb, 2020-10-01: 1 bbbb 1/10/2020,
1, a , 0001-01-01: 1 a 0001-01-01,
1, bbbb, 2020-10-01: 1 bbbb 2020-10-01,
1, bbbb, null : 1 bbbb ,
1, bbbb, 0001-01-01: 1 bbbb 1/01/0001,
100, a , 2020-10-01: 100 a 1/10/2020,
1, bbbb, 0001-01-01: 1 bbbb 0001-01-01,
100, a , 2020-10-01: 100 a 2020-10-01,
100, a , null : 100 a ,
100, a , 0001-01-01: 100 a 1/01/0001,
100, bbbb, 2020-10-01: 100 bbbb 1/10/2020,
100, a , 0001-01-01: 100 a 0001-01-01,
100, bbbb, 2020-10-01: 100 bbbb 2020-10-01,
100, bbbb, null : 100 bbbb ,
100, bbbb, 0001-01-01: 100 bbbb 1/01/0001
100, bbbb, 0001-01-01: 100 bbbb 0001-01-01
}
2 changes: 1 addition & 1 deletion src/Verify.Tests/VerifyCombinationsSample.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public Task CombinationAlignment()
string[] strings = ["a", "bbbb"];
Date?[] dates = [new(2020, 10, 1), null, Date.MinValue];
return VerifyCombinations(
(number, text, date) => string.Join(" ", number, text, date),
(number, text, date) => string.Join(" ", number, text, date?.ToString("yyyy-MM-dd")),
numbers,
strings,
dates);
Expand Down

0 comments on commit 4265859

Please sign in to comment.