Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
CathLass committed Feb 11, 2025
1 parent f994121 commit 6c11319
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public async Task Get_InductionNotManagedByCpd_ExpectedRadioButtonsExistOnPage()
public async Task Get_InductionManagedByCpd_ExpectedRadioButtonsExistOnPage(InductionStatus currentInductionStatus)
{
// Arrange
InductionStatus[] expectedStatuses = new List<InductionStatus>(){ InductionStatus.Exempt, InductionStatus.FailedInWales, currentInductionStatus }.OrderBy(i => i).ToArray();
InductionStatus[] expectedStatuses = new List<InductionStatus>() { InductionStatus.Exempt, InductionStatus.FailedInWales, currentInductionStatus }.OrderBy(i => i).ToArray();
var expectedChoices = expectedStatuses.Select(s => s.ToString());
var lessThanSevenYearsAgo = Clock.Today.AddYears(-1);
var person = await TestData.CreatePersonAsync(p => p.WithQts());
Expand Down

0 comments on commit 6c11319

Please sign in to comment.