PR style comments

This commit is contained in:
Ben Magee 2019-12-22 22:36:11 +00:00
parent f47c7959af
commit 8c4e679ff4
No known key found for this signature in database
GPG key ID: F03F50C6333B2D9F
2 changed files with 8 additions and 3 deletions

View file

@ -36,7 +36,12 @@ namespace Jellyfin.Api.Tests.Auth
public CustomAuthenticationHandlerTests() public CustomAuthenticationHandlerTests()
{ {
_fixture = new Fixture().Customize(new AutoMoqCustomization {ConfigureMembers = true}); var fixtureCustomizations = new AutoMoqCustomization
{
ConfigureMembers = true
};
_fixture = new Fixture().Customize(fixtureCustomizations);
AllowFixtureCircularDependencies(); AllowFixtureCircularDependencies();
_authServiceMock = _fixture.Freeze<Mock<IAuthService>>(); _authServiceMock = _fixture.Freeze<Mock<IAuthService>>();

View file

@ -19,7 +19,7 @@
<ItemGroup> <ItemGroup>
<ProjectReference Include="../../MediaBrowser.Api/MediaBrowser.Api.csproj" /> <ProjectReference Include="../../MediaBrowser.Api/MediaBrowser.Api.csproj" />
<ProjectReference Include="..\..\Jellyfin.Api\Jellyfin.Api.csproj" /> <ProjectReference Include="../../Jellyfin.Api/Jellyfin.Api.csproj" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>