Skip to content

Commit

Permalink
[TextFields] Drop RTL assert to a log message. (#6124)
Browse files Browse the repository at this point in the history
Although we won't be supporting iOS 9 much longer, and almost never for
snapshot tests, the entire test should not fail on iOS 8. Instead, it can just
render incorrectly - at least some value will still come from the broken test.

Part of #5762
  • Loading branch information
Robert Moore committed Dec 27, 2018
1 parent 0950eff commit db712a3
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -52,7 +52,7 @@ - (void)setUp {
if (@available(iOS 9.0, *)) {
[self changeLayoutToRTL];
} else {
XCTAssertTrue(NO, @"RTL tests can only run on iOS 9 or later.");
NSLog(@"[ERROR] RTL tests can only run on iOS 9 or later.");
}
}

Expand Down

0 comments on commit db712a3

Please sign in to comment.