Skip to content

Commit 39901e5

Browse files
authored
Mark test_get_room_meeting_info Expected Fail (#245)
The API is not returning the correct/expected response. The API is returning a `200 OK` response with an empty JSON body `{}`.
2 parents 4a556eb + 36f0f3a commit 39901e5

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/api/test_rooms.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,9 @@ def test_get_room_details(api, group_room):
174174
assert is_valid_room(room)
175175

176176

177+
@pytest.mark.xfail(
178+
reason="API Error: The API is not returning the expected results"
179+
)
177180
def test_get_room_meeting_info(api, group_room):
178181
room_meeting_info = api.rooms.get_meeting_info(group_room.id)
179182
assert is_valid_room_meeting_info(room_meeting_info)

0 commit comments

Comments
 (0)