Skip to content

Commit 978d264

Browse files
committed
fix duplicate class implementations in database tests
1 parent 1aab90a commit 978d264

File tree

5 files changed

+26
-171
lines changed

5 files changed

+26
-171
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ xcode_scheme: FirebaseUI
66
rvm: 2.3.1
77
before_install:
88
- gem install cocoapods -v '1.0.1'
9+
- pod install --repo-update
910

1011
script: xcodebuild -workspace FirebaseUI.xcworkspace
1112
-scheme FirebaseUI

FirebaseAuthUITests/FIRAuthUITest.m

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@
1919
@import FirebaseAuth;
2020
@import FirebaseAuthUI;
2121

22+
// A hack to fix travis failing to pick up FIROptions interface
23+
@interface FIROptions (TravisCIHack)
24+
- (instancetype)initWithContentsOfFile:(NSString *)file;
25+
@end
26+
2227
@interface FUILoginProvider : NSObject <FIRAuthProviderUI>
2328
@property (nonatomic, assign) BOOL canHandleURLs;
2429
@end

FirebaseDatabaseUI/FirebaseArray.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
// clang-format on
2020

21-
@import Firebase;
21+
@import FirebaseDatabase;
2222

2323
#import "FirebaseArrayDelegate.h"
2424

0 commit comments

Comments
 (0)