From 4b6fb9f13eecacb170566dd5dc1646a055c57cb9 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Tue, 6 Jul 2021 16:41:57 +0200 Subject: [PATCH] RestartRoundTest now loads saltern. --- .../Tests/Commands/RestartRoundTest.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Content.IntegrationTests/Tests/Commands/RestartRoundTest.cs b/Content.IntegrationTests/Tests/Commands/RestartRoundTest.cs index ebc11c9c2e..c6cf878851 100644 --- a/Content.IntegrationTests/Tests/Commands/RestartRoundTest.cs +++ b/Content.IntegrationTests/Tests/Commands/RestartRoundTest.cs @@ -20,7 +20,13 @@ namespace Content.IntegrationTests.Tests.Commands [TestCase(false)] public async Task RestartRoundAfterStart(bool lobbyEnabled) { - var (_, server) = await StartConnectedServerClientPair(); + var (_, server) = await StartConnectedServerClientPair(serverOptions: new ServerContentIntegrationOption + { + CVarOverrides = + { + [CCVars.GameMap.Name] = "Maps/saltern.yml" + } + }); await server.WaitIdleAsync();