Skip to content

Commit 615591b

Browse files
committed
credo, format
1 parent 5b6fc96 commit 615591b

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

test/ex_webrtc_recorder/manifest_test.exs

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ defmodule ExWebRTC.Recorder.Manifest.Test do
4747
audio_id => %{
4848
"codec" => %{
4949
"channels" => 2,
50-
"clock_rate" => 48000,
50+
"clock_rate" => 48_000,
5151
"mime_type" => "audio/opus",
5252
"payload_type" => 109,
5353
"rtcp_fbs" => nil,
@@ -62,7 +62,7 @@ defmodule ExWebRTC.Recorder.Manifest.Test do
6262
video_id => %{
6363
"codec" => %{
6464
"channels" => nil,
65-
"clock_rate" => 90000,
65+
"clock_rate" => 90_000,
6666
"mime_type" => "video/VP8",
6767
"payload_type" => 120,
6868
"rtcp_fbs" => ["120 nack", "120 nack pli", "120 ccm fir", "120 transport-cc"],
@@ -87,8 +87,7 @@ defmodule ExWebRTC.Recorder.Manifest.Test do
8787

8888
test "two entries(audio,video) manifest" do
8989
json =
90-
Jason.decode!(
91-
"""
90+
Jason.decode!("""
9291
{
9392
"6264340764417145606381315372": {
9493
"codec": {
@@ -134,8 +133,7 @@ defmodule ExWebRTC.Recorder.Manifest.Test do
134133
]
135134
}
136135
}
137-
"""
138-
)
136+
""")
139137

140138
manifest = Manifest.from_json!(json)
141139

0 commit comments

Comments
 (0)