Skip to content

Commit

Permalink
テストミスを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
voluntas committed Sep 17, 2024
1 parent b49da8e commit 790584f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,10 +199,10 @@ def _on_signaling_message(
case "candidate":
self._candidate_messages.append(message)
case "re-offer":
assert signaling_direction == SoraSignalingDirection.SENT
assert signaling_direction == SoraSignalingDirection.RECEIVED
self._re_offer_messages.append(message)
case "re-answer":
assert signaling_direction == SoraSignalingDirection.RECEIVED
assert signaling_direction == SoraSignalingDirection.SENT
self._re_answer_messages.append(message)
case "disconnect":
assert signaling_direction == SoraSignalingDirection.SENT
Expand Down

0 comments on commit 790584f

Please sign in to comment.