Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
daytime-em committed May 8, 2024
1 parent f915523 commit 265510e
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class ContentKeySessionDelegateTests : XCTestCase {

var testPlaybackOptionsRegistry: TestPlaybackOptionsRegistry!
var testCredentialClient: TestFairPlayStreamingSessionCredentialClient!
var testSessionmanager: TestFairPlayStreamingSessionManager!
var testSessionManager: TestFairPlayStreamingSessionManager!

// object under test
var contentKeySessionDelegate: ContentKeySessionDelegate<
Expand All @@ -29,13 +29,13 @@ class ContentKeySessionDelegateTests : XCTestCase {
failsWith: error
)
testPlaybackOptionsRegistry = TestPlaybackOptionsRegistry()
testSessionmanager = TestFairPlayStreamingSessionManager(
testSessionManager = TestFairPlayStreamingSessionManager(
credentialClient: testCredentialClient,
optionsRegistry: testPlaybackOptionsRegistry
)

contentKeySessionDelegate = ContentKeySessionDelegate(
sessionManager: testSessionmanager
sessionManager: testSessionManager
)
}

Expand All @@ -46,13 +46,13 @@ class ContentKeySessionDelegateTests : XCTestCase {
)
testPlaybackOptionsRegistry = TestPlaybackOptionsRegistry()

testSessionmanager = TestFairPlayStreamingSessionManager(
testSessionManager = TestFairPlayStreamingSessionManager(
credentialClient: testCredentialClient,
optionsRegistry: testPlaybackOptionsRegistry
)

contentKeySessionDelegate = ContentKeySessionDelegate(
sessionManager: testSessionmanager
sessionManager: testSessionManager
)
}

Expand Down

0 comments on commit 265510e

Please sign in to comment.