From d98ff02433d477707ae7aaf41bf2505c1544abe6 Mon Sep 17 00:00:00 2001 From: Frieder Bluemle Date: Sun, 29 Sep 2019 18:01:32 -0700 Subject: [PATCH] Fix template whitespace error (#26631) Summary: Very small update here. 0fcaca8e26223e47cc101c76bb7a7b02e0fc7101 accidentally introduced a whitespace error (trailing whitespace) in an iOS test file - This whitespace error is now propagated into all new projects generated by `react-native init`. This fixes it. ## Changelog [iOS] [Fixed] - Template whitespace error Pull Request resolved: https://github.com/facebook/react-native/pull/26631 Test Plan: N/A Differential Revision: D17661040 Pulled By: cpojer fbshipit-source-id: 1858d2fe238d139894738187ec73f1e27e306294 --- template/ios/HelloWorldTests/HelloWorldTests.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/ios/HelloWorldTests/HelloWorldTests.m b/template/ios/HelloWorldTests/HelloWorldTests.m index 1b3a4fd2701..e6ca332f45b 100644 --- a/template/ios/HelloWorldTests/HelloWorldTests.m +++ b/template/ios/HelloWorldTests/HelloWorldTests.m @@ -59,7 +59,7 @@ return NO; }]; } - + #ifdef DEBUG RCTSetLogFunction(RCTDefaultLogFunction); #endif