Skip to content

Commit

Permalink
fix the failing unit test.
Browse files Browse the repository at this point in the history
  • Loading branch information
jallamsetty1 committed Apr 18, 2024
1 parent 840e250 commit 8d12c43
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion jicofo/src/test/kotlin/org/jitsi/jicofo/CodecConfigTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ import org.jitsi.jicofo.codec.Config.Companion.config
class CodecConfigTest : ShouldSpec() {
init {
context("Default configuration") {
config.av1.enabled() shouldBe false
config.av1.enabled() shouldBe true
config.av1.pt() shouldBe 41
config.av1.rtxEnabled() shouldBe true
config.av1.rtxPt() shouldBe 42

config.vp8.enabled() shouldBe true
config.vp8.pt() shouldBe 100
Expand Down

0 comments on commit 8d12c43

Please sign in to comment.