Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
roznawsk committed Nov 28, 2024
1 parent 94051d5 commit 14fbc85
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/ex_webrtc/rtp_sender_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ defmodule ExWebRTC.RTPSenderTest do
assert %{
timestamp: timestamp,
type: :outbound_rtp,
id: sender.id,
id: sender.track.id,
ssrc: sender.ssrc,
packets_sent: 0,
bytes_sent: 0,
Expand All @@ -77,7 +77,7 @@ defmodule ExWebRTC.RTPSenderTest do
assert %{
timestamp: timestamp,
type: :outbound_rtp,
id: sender.id,
id: sender.track.id,
ssrc: sender.ssrc,
packets_sent: 1,
bytes_sent: byte_size(data1),
Expand All @@ -94,7 +94,7 @@ defmodule ExWebRTC.RTPSenderTest do
assert %{
timestamp: timestamp,
type: :outbound_rtp,
id: sender.id,
id: sender.track.id,
ssrc: sender.ssrc,
packets_sent: 2,
bytes_sent: byte_size(data1) + byte_size(data2),
Expand Down

0 comments on commit 14fbc85

Please sign in to comment.