Skip to content

Commit

Permalink
fix syntax error in test
Browse files Browse the repository at this point in the history
  • Loading branch information
snixtho committed Sep 23, 2023
1 parent af17226 commit 79e72ec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/EvoSC.Common.Tests/Services/MapServiceTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ public class MapServiceTests
private readonly Mock<ILogger<MapService>> _logger = new();
private readonly Mock<IEvoScBaseConfig> _config = new();
private readonly Mock<IPlayerManagerService> _playerService = new();
private readonly Mock<IMatchSettingsService> _matchSettings = new();

private readonly (Mock<IServerClient> Client, Mock<IGbxRemoteClient> Remote)
_server = Mocking.NewServerClientMock();
Expand All @@ -37,7 +38,7 @@ private readonly (Mock<IServerClient> Client, Mock<IGbxRemoteClient> Remote)
public MapServiceTests()
{
_mapService = new MapService(_mapRepository.Object, _logger.Object, _config.Object, _playerService.Object,
_server.Client.Object);
_server.Client.Object, _matchSettings.Object);
}

[Fact]
Expand Down

0 comments on commit 79e72ec

Please sign in to comment.