Skip to content

Commit

Permalink
[Fix]Failing iOS 15 test (#598)
Browse files Browse the repository at this point in the history
  • Loading branch information
ipavlidakis authored Nov 12, 2024
1 parent fb5654c commit f057249
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ final class StreamRTCAudioSession_Tests: XCTestCase {
// MARK: - currentRoute

func test_currentRoute_returnsCorrectRoute() {
XCTAssertEqual(subject.currentRoute, rtcAudioSession.currentRoute)
XCTAssertEqual(subject.currentRoute.inputs.map(\.portType), rtcAudioSession.currentRoute.inputs.map(\.portType))
XCTAssertEqual(subject.currentRoute.outputs.map(\.portType), rtcAudioSession.currentRoute.outputs.map(\.portType))
}

// MARK: - category
Expand Down

0 comments on commit f057249

Please sign in to comment.