Skip to content

Commit aac6193

Browse files
authored
Relax room webhook assertions
1 parent 14bcfad commit aac6193

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/test_room_api.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def test_no_params(self, room_api: FishjamClient):
8989

9090
config = RoomConfig(
9191
max_peers=0,
92-
webhook_url=None,
92+
webhook_url=room.config.webhook_url,
9393
room_type=RoomType(CONFERENCE),
9494
video_codec=VideoCodec.H264,
9595
)
@@ -113,7 +113,7 @@ def test_valid_params(self, room_api: FishjamClient):
113113
config = RoomConfig(
114114
max_peers=MAX_PEERS,
115115
video_codec=VideoCodec.H264,
116-
webhook_url=None,
116+
webhook_url=room.config.webhook_url,
117117
room_type=RoomType(AUDIO_ONLY),
118118
)
119119

@@ -171,7 +171,7 @@ def test_valid(self, room_api: FishjamClient):
171171

172172
config = RoomConfig(
173173
max_peers=0,
174-
webhook_url=None,
174+
webhook_url=room.config.webhook_url,
175175
room_type=RoomType(CONFERENCE),
176176
video_codec=VideoCodec.H264,
177177
)

0 commit comments

Comments
 (0)