Skip to content

Commit

Permalink
fix: contract test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Mateusz Czeladka committed Nov 14, 2023
1 parent c03fa7a commit 6c10c26
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,13 @@

public class LeaderboardTests extends BaseTest {

// TODO: should return a 200 but a wrong path has been matched
@Test
public void testIsHighLevelEventLeaderBoardAvailable() {
given()
.when()
.head(VotingAppEndpoints.LEADERBOARD_ENDPOINT + "/event/CF_TEST_EVENT_01")
.then()
.statusCode(400);
.statusCode(200);
}

@Test
Expand Down

0 comments on commit 6c10c26

Please sign in to comment.