diff --git a/FirebasePerformance/Tests/TestApp/Source/ViewControllers/NetworkConnectionViewController.m b/FirebasePerformance/Tests/TestApp/Source/ViewControllers/NetworkConnectionViewController.m index 8d8426b9a17..4b278438518 100644 --- a/FirebasePerformance/Tests/TestApp/Source/ViewControllers/NetworkConnectionViewController.m +++ b/FirebasePerformance/Tests/TestApp/Source/ViewControllers/NetworkConnectionViewController.m @@ -145,7 +145,7 @@ - (void)networkConnectionViewDidTapRequestButton:(NetworkConnectionView *)connec PerfLog(@"Start perform network request"); [self.connection makeNetworkRequestWithSuccessCallback:^{ - PerfLog(@"Network operation complited with success"); + PerfLog(@"Network operation completed with success"); dispatch_async(dispatch_get_main_queue(), ^{ [weakSelf updateUIForOperationCompleted]; weakSelf.connectionView.progressViewColor = [UIColor greenColor]; @@ -155,7 +155,7 @@ - (void)networkConnectionViewDidTapRequestButton:(NetworkConnectionView *)connec } failureCallback:^(NSError *error) { dispatch_async(dispatch_get_main_queue(), ^{ - PerfLog(@"Network operation complited with fail: %@", error.localizedDescription); + PerfLog(@"Network operation completed with fail: %@", error.localizedDescription); [weakSelf updateUIForOperationCompleted]; weakSelf.connectionView.progressViewColor = [UIColor redColor]; self.connectionView.connectionStatus = ConnectionStatus_Fail;