Skip to content

Commit

Permalink
Fix test attempt #2
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackYps committed Sep 2, 2023
1 parent 3176d1d commit ec4653f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ void anyOneCanReadSpecificLeagueScoreJournal() throws Exception {
.andExpect(status().isOk())
.andExpect(jsonPath("$.data.attributes.gameId", is(2)))
.andExpect(jsonPath("$.data.attributes.loginId", is(1)))
.andExpect(jsonPath("$.data.relationships.leagueSeason.data.id", is(1)))
.andExpect(jsonPath("$.data.relationships.leagueSeasonDivisionSubdivisionBefore.data.id", is(1)))
.andExpect(jsonPath("$.data.relationships.leagueSeasonDivisionSubdivisionAfter.data.id", is(2)))
.andExpect(jsonPath("$.data.relationships.leagueSeason.data.id", is("1")))
.andExpect(jsonPath("$.data.relationships.leagueSeasonDivisionSubdivisionBefore.data.id", is("1")))
.andExpect(jsonPath("$.data.relationships.leagueSeasonDivisionSubdivisionAfter.data.id", is("2")))
.andExpect(jsonPath("$.data.attributes.scoreBefore", is(10)))
.andExpect(jsonPath("$.data.attributes.scoreAfter", is(2)))
.andExpect(jsonPath("$.data.attributes.gameCount", is(22)));
Expand Down

0 comments on commit ec4653f

Please sign in to comment.