@@ -7,7 +7,7 @@ import XCTest
7
7
@MainActor
8
8
class ExampleTests : XCTestCase {
9
9
func testApplicationLaunchWithoutNotification( ) async throws {
10
- let delegate = AsyncStream< UserNotificationClient . DeletegateAction > . streamWithContinuation( )
10
+ let delegate = AsyncStream< UserNotificationClient . DelegateAction > . streamWithContinuation( )
11
11
let requestedAuthorizationOptions = ActorIsolated < UNAuthorizationOptions ? > ( nil )
12
12
let store = TestStore (
13
13
initialState: App . State ( count: nil ) ,
@@ -27,7 +27,7 @@ class ExampleTests: XCTestCase {
27
27
}
28
28
29
29
func testApplicationLaunchWithtNotification( ) async throws {
30
- let delegate = AsyncStream< UserNotificationClient . DeletegateAction > . streamWithContinuation( )
30
+ let delegate = AsyncStream< UserNotificationClient . DelegateAction > . streamWithContinuation( )
31
31
let requestedAuthorizationOptions = ActorIsolated < UNAuthorizationOptions ? > ( nil )
32
32
33
33
let store = TestStore (
@@ -51,7 +51,7 @@ class ExampleTests: XCTestCase {
51
51
}
52
52
53
53
func testNotificationPresentationHandling( ) async throws {
54
- let delegate = AsyncStream< UserNotificationClient . DeletegateAction > . streamWithContinuation( )
54
+ let delegate = AsyncStream< UserNotificationClient . DelegateAction > . streamWithContinuation( )
55
55
56
56
let store = TestStore (
57
57
initialState: App . State ( count: nil ) ,
@@ -95,7 +95,7 @@ class ExampleTests: XCTestCase {
95
95
}
96
96
97
97
func testReceivedNotification( ) async throws {
98
- let delegate = AsyncStream< UserNotificationClient . DeletegateAction > . streamWithContinuation( )
98
+ let delegate = AsyncStream< UserNotificationClient . DelegateAction > . streamWithContinuation( )
99
99
100
100
let store = TestStore (
101
101
initialState: App . State ( count: nil ) ,
0 commit comments