Skip to content

Commit

Permalink
Mark test_get_room_meeting_info Expected Fail (#245)
Browse files Browse the repository at this point in the history
The API is not returning the correct/expected response. The API is
returning a `200 OK` response with an empty JSON body `{}`.
  • Loading branch information
cmlccie authored Nov 2, 2024
2 parents 4a556eb + 36f0f3a commit 39901e5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/api/test_rooms.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,9 @@ def test_get_room_details(api, group_room):
assert is_valid_room(room)


@pytest.mark.xfail(
reason="API Error: The API is not returning the expected results"
)
def test_get_room_meeting_info(api, group_room):
room_meeting_info = api.rooms.get_meeting_info(group_room.id)
assert is_valid_room_meeting_info(room_meeting_info)
Expand Down

0 comments on commit 39901e5

Please sign in to comment.