Skip to content

Commit c5a178b

Browse files
Stabilize merchant schedule validation
Co-authored-by: StuartFerguson <16325469+StuartFerguson@users.noreply.github.com>
1 parent b83d7b0 commit c5a178b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

TransactionProcessor.IntegrationTesting.Helpers/TransactionProcessorSteps.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ await Retry.For(async () => {
217217
foreach (MerchantScheduleMonthRequest expectedMonth in scheduleRequest.request.Months.OrderBy(m => m.Month))
218218
{
219219
MerchantScheduleMonthResponse actualMonth = merchantSchedule.Months.Single(m => m.Month == expectedMonth.Month);
220-
actualMonth.ClosedDays.ShouldBe(expectedMonth.ClosedDays);
220+
actualMonth.ClosedDays.OrderBy(day => day).ToList().ShouldBe(expectedMonth.ClosedDays.OrderBy(day => day).ToList());
221221
}
222222
});
223223
}

0 commit comments

Comments
 (0)