Skip to content

Commit

Permalink
Changed to block body
Browse files Browse the repository at this point in the history
  • Loading branch information
sam-c-dfe committed Jan 9, 2025
1 parent c66bca3 commit 3fd299a
Showing 1 changed file with 9 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,15 @@ public class QualificationSearchServiceTests
private Mock<IGovUkContentParser> _mockContentParser = new();
private Mock<IUserJourneyCookieService> _mockUserJourneyCookieService = new();

private IQualificationSearchService GetSut() => new QualificationSearchService(
_mockRepository.Object,
_mockContentService.Object,
_mockContentParser.Object,
_mockUserJourneyCookieService.Object
);
private IQualificationSearchService GetSut()
{
return new QualificationSearchService(
_mockRepository.Object,
_mockContentService.Object,
_mockContentParser.Object,
_mockUserJourneyCookieService.Object
);
}

[TestInitialize]
public void Initialize()
Expand Down

0 comments on commit 3fd299a

Please sign in to comment.