aboutsummaryrefslogtreecommitdiffhomepage
path: root/Example/Auth
diff options
context:
space:
mode:
authorGravatar Paul Beusterien <paulbeusterien@google.com>2017-06-06 17:00:20 -0700
committerGravatar GitHub <noreply@github.com>2017-06-06 17:00:20 -0700
commitaac64a63ae94307fb3562185b7b031d58a6ca0b4 (patch)
treeca87c49451c36016a79fdbed5307972c99f429aa /Example/Auth
parent6bf24632ed11d1291e88a046465ffcf504156537 (diff)
Add Foundation import so TARGET_OS_IOS or other TARGET_OS_* gets defined (#71)
Diffstat (limited to 'Example/Auth')
-rw-r--r--Example/Auth/Tests/FIRAuthTests.m2
-rw-r--r--Example/Auth/Tests/FIRUserTests.m2
2 files changed, 4 insertions, 0 deletions
diff --git a/Example/Auth/Tests/FIRAuthTests.m b/Example/Auth/Tests/FIRAuthTests.m
index f891728..f6793cb 100644
--- a/Example/Auth/Tests/FIRAuthTests.m
+++ b/Example/Auth/Tests/FIRAuthTests.m
@@ -14,6 +14,8 @@
* limitations under the License.
*/
+#import <Foundation/Foundation.h>
+
#import <XCTest/XCTest.h>
#import "FIRAppInternal.h"
diff --git a/Example/Auth/Tests/FIRUserTests.m b/Example/Auth/Tests/FIRUserTests.m
index c90da44..efb7c1b 100644
--- a/Example/Auth/Tests/FIRUserTests.m
+++ b/Example/Auth/Tests/FIRUserTests.m
@@ -14,6 +14,8 @@
* limitations under the License.
*/
+#import <Foundation/Foundation.h>
+
#import <XCTest/XCTest.h>
#import "EmailPassword/FIREmailAuthProvider.h"