@@ -1053,7 +1053,7 @@ - (void) testDidReceiveNotificatioExtensionRequest {
10531053
10541054 id notifResponse = [self createBasiciOSNotificationResponseWithPayload: userInfo];
10551055
1056- UNMutableNotificationContent * content = [OneSignal didReceiveNotificatioExtensionnRequest : [notifResponse notification ].request withMutableNotificationContent: nil ];
1056+ UNMutableNotificationContent * content = [OneSignal didReceiveNotificationExtensionRequest : [notifResponse notification ].request withMutableNotificationContent: nil ];
10571057
10581058 // Make sure butons were added.
10591059 XCTAssertEqualObjects (content.categoryIdentifier , @" __dynamic__" );
@@ -1074,13 +1074,13 @@ - (void) testDidReceiveNotificatioExtensionRequest {
10741074 }};
10751075
10761076 notifResponse = [self createBasiciOSNotificationResponseWithPayload: userInfo];
1077- [OneSignal didReceiveNotificatioExtensionnRequest : [notifResponse notification ].request withMutableNotificationContent: nil ];
1077+ [OneSignal didReceiveNotificationExtensionRequest : [notifResponse notification ].request withMutableNotificationContent: nil ];
10781078
10791079 XCTAssertEqual ([lastSetCategories count ], 3 );
10801080}
10811081
10821082// iOS 10 - Notification Service Extension test
1083- - (void ) testDidReceiveNotificatioExtensionnRequestDontOverrideCateogory {
1083+ - (void ) testDidReceiveNotificationExtensionRequestDontOverrideCateogory {
10841084 id userInfo = @{@" aps" : @{
10851085 @" mutable-content" : @1 ,
10861086 @" alert" : @" Message Body"
@@ -1095,7 +1095,7 @@ - (void) testDidReceiveNotificatioExtensionnRequestDontOverrideCateogory {
10951095
10961096 [[notifResponse notification ].request.content setValue: @" some_category" forKey: @" categoryIdentifier" ];
10971097
1098- UNMutableNotificationContent * content = [OneSignal didReceiveNotificatioExtensionnRequest : [notifResponse notification ].request withMutableNotificationContent: nil ];
1098+ UNMutableNotificationContent * content = [OneSignal didReceiveNotificationExtensionRequest : [notifResponse notification ].request withMutableNotificationContent: nil ];
10991099
11001100 // Make sure we didn't override an existing category
11011101 XCTAssertEqualObjects (content.categoryIdentifier , @" some_category" );
0 commit comments