diff --git a/DragaliaAPI.Integration.Test/Features/GraphQL/GraphQlTest.cs b/DragaliaAPI.Integration.Test/Features/GraphQL/GraphQlTest.cs index 5a1cf6035..6654a7687 100644 --- a/DragaliaAPI.Integration.Test/Features/GraphQL/GraphQlTest.cs +++ b/DragaliaAPI.Integration.Test/Features/GraphQL/GraphQlTest.cs @@ -53,22 +53,8 @@ public async Task Query_PlayerCharacters_ReturnsExpectedResult() response.Errors.Should().BeNullOrEmpty(); - response.Data - .Should() - .BeEquivalentTo( - new Response( - new Player( - new Character[] - { - new((int)Charas.ThePrince), - new((int)Charas.SummerMikoto) - } - ) - ) - ); - - response.Data.Player.CharaList.Should().Contain(x => x.CharaId == Charas.ThePrince); - response.Data.Player.CharaList.Should().Contain(x => x.CharaId == Charas.SummerMikoto); + response.Data.Player.CharaList.Should().Contain(x => x.CharaId == (int)Charas.ThePrince); + response.Data.Player.CharaList.Should().Contain(x => x.CharaId == (int)Charas.SummerMikoto); } [Fact]