Skip to content

Commit 586763d

Browse files
author
Daniel Browne
committed
Correct test helper method name typo
1 parent a04c41a commit 586763d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tests/Unit/Models/PrivateEncryptedChannelTests.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ class PrivateEncryptedChannelTests: XCTestCase {
202202
waitForExpectations(timeout: 1)
203203
}
204204

205-
func authorizerReponseSequence(_ authSequence: [PusherAuth]) {
205+
func authorizerResponseSequence(_ authSequence: [PusherAuth]) {
206206
let (pusher, socket) = configurePusherWithAuthMethod(authMethod: AuthMethod.authorizer(authorizer: TestAuthorizer(authSequence)))
207207
pusher.connect()
208208

@@ -238,11 +238,11 @@ class PrivateEncryptedChannelTests: XCTestCase {
238238
}
239239

240240
func testInitialLoadKeyAuthorizerAuthMethod() {
241-
authorizerReponseSequence([validAuth])
241+
authorizerResponseSequence([validAuth])
242242
}
243243

244244
func testReloadKeyAuthorizerAuthMethod() {
245-
authorizerReponseSequence([incorrectSharedSecretAuth, validAuth])
245+
authorizerResponseSequence([incorrectSharedSecretAuth, validAuth])
246246
}
247247

248248
func testInitialLoadKeyRequestBuilder() {

0 commit comments

Comments
 (0)