Skip to content

Commit

Permalink
Fix credo
Browse files Browse the repository at this point in the history
  • Loading branch information
mickel8 committed Apr 12, 2024
1 parent 39bb75a commit 6eacd4f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/ex_sdp/media_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -101,15 +101,15 @@ defmodule ExSDP.MediaTest do

parsed_attributes = [
%Attribute.RTPMapping{
clock_rate: 48000,
clock_rate: 48_000,
encoding: "OPUS",
params: 2,
payload_type: 111
},
%Attribute.FMTP{
pt: 111,
minptime: 10,
maxaveragebitrate: 96000,
maxaveragebitrate: 96_000,
stereo: true,
useinbandfec: true,
unknown: ["sprop-stereo=1"]
Expand All @@ -124,7 +124,7 @@ defmodule ExSDP.MediaTest do
assert %Media{
attributes: parsed_attributes,
fmt: ~c"o",
port: 58712,
port: 58_712,
protocol: "UDP/TLS/RTP/SAVPF",
type: :audio
} == medium
Expand Down

0 comments on commit 6eacd4f

Please sign in to comment.