We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0151141 commit 58c4281Copy full SHA for 58c4281
tests/test_2_management.py
@@ -64,7 +64,7 @@ def test_management_announce():
64
def test_management_announce_all():
65
announcement = mgt_handler.announce_all("This is a test")
66
assert isinstance(announcement, dict)
67
- assert len(announcement) == 3
+ assert len(announcement) == 4
68
69
70
def test_management_version():
tests/test_3_room.py
@@ -45,11 +45,11 @@
45
46
def test_room_lists():
47
rooms = room_handler.lists()
48
- assert rooms.total == 5
49
- assert len(rooms) == 5
+ assert rooms.total == 6
+ assert len(rooms) == 6
50
assert "room_id" in rooms[0]
51
rooms = room_handler.lists(limit=1)
52
53
assert rooms.next == 1
54
55
0 commit comments