From 7e1bc61dc907d59928899684570f320b60ac01f2 Mon Sep 17 00:00:00 2001 From: Dan Van Atta Date: Sat, 16 Jan 2021 20:53:27 -0800 Subject: [PATCH] Fix integ test - add missing dataset annotation (#8638) --- .../player/info/PlayerInfoControllerIntegrationTest.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lobby-server/src/test/java/org/triplea/modules/player/info/PlayerInfoControllerIntegrationTest.java b/lobby-server/src/test/java/org/triplea/modules/player/info/PlayerInfoControllerIntegrationTest.java index f8a0dd33e9f..fed2a4d4fd1 100644 --- a/lobby-server/src/test/java/org/triplea/modules/player/info/PlayerInfoControllerIntegrationTest.java +++ b/lobby-server/src/test/java/org/triplea/modules/player/info/PlayerInfoControllerIntegrationTest.java @@ -3,6 +3,7 @@ import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.core.Is.is; +import com.github.database.rider.core.api.dataset.DataSet; import java.net.URI; import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.Test; @@ -10,8 +11,10 @@ import org.triplea.http.client.HttpInteractionException; import org.triplea.http.client.lobby.player.PlayerLobbyActionsClient; import org.triplea.modules.http.AllowedUserRole; +import org.triplea.modules.http.LobbyServerTest; import org.triplea.modules.http.ProtectedEndpointTest; +@DataSet(value = LobbyServerTest.LOBBY_USER_DATASET, useSequenceFiltering = false) class PlayerInfoControllerIntegrationTest extends ProtectedEndpointTest { PlayerInfoControllerIntegrationTest(final URI localhost) {