diff --git a/AppFramework/Synchronization/GREYAppStateTracker.m b/AppFramework/Synchronization/GREYAppStateTracker.m index aea6334e6..94b021426 100644 --- a/AppFramework/Synchronization/GREYAppStateTracker.m +++ b/AppFramework/Synchronization/GREYAppStateTracker.m @@ -133,7 +133,7 @@ - (NSString *)description { [description appendString:@"\n"]; if (state != kGREYIdle) { for (GREYAppStateTrackerObject *object in self->_externalTrackerObjects) { - [description appendFormat:@"\n<%@> => %@. For more information, turn on verbose logging " + [description appendFormat:@"\n<%@> => %@ For more information, turn on verbose logging " @"and rerun tests. If it's already turned on, see logs below.\n", object.objectDescription, StringFromAppState(object.state)]; if (GREYVerboseLoggingEnabled()) { diff --git a/Tests/Functional/Sources/FailureFormattingTest.m b/Tests/Functional/Sources/FailureFormattingTest.m index 9bb729c9b..397023e39 100644 --- a/Tests/Functional/Sources/FailureFormattingTest.m +++ b/Tests/Functional/Sources/FailureFormattingTest.m @@ -507,7 +507,7 @@ - (void)testAppStateTrackingTimeoutWithoutVerboseLogging { [EarlGrey rotateDeviceToOrientation:UIDeviceOrientationPortrait error:nil]; NSString *expectedDetails = @"Waiting for viewDidAppear: call on the view controller. Please " @"ensure that this view controller and its subclasses call through " - @"to their super's implementation.. For more information, turn on " + @"to their super's implementation. For more information, turn on " @"verbose logging and rerun tests. If it's already turned on, " @"see logs below."; XCTAssertTrue([_handler.details containsString:expectedDetails],