Skip to content

Commit 58c4281

Browse files
committed
Fix the expected testing result
1 parent 0151141 commit 58c4281

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/test_2_management.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def test_management_announce():
6464
def test_management_announce_all():
6565
announcement = mgt_handler.announce_all("This is a test")
6666
assert isinstance(announcement, dict)
67-
assert len(announcement) == 3
67+
assert len(announcement) == 4
6868

6969

7070
def test_management_version():

tests/test_3_room.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@
4545

4646
def test_room_lists():
4747
rooms = room_handler.lists()
48-
assert rooms.total == 5
49-
assert len(rooms) == 5
48+
assert rooms.total == 6
49+
assert len(rooms) == 6
5050
assert "room_id" in rooms[0]
5151
rooms = room_handler.lists(limit=1)
52-
assert rooms.total == 5
52+
assert rooms.total == 6
5353
assert rooms.next == 1
5454

5555

0 commit comments

Comments
 (0)