aboutsummaryrefslogtreecommitdiffhomepage
path: root/Example/Core/Tests/FIRMutableDictionaryTest.m
diff options
context:
space:
mode:
Diffstat (limited to 'Example/Core/Tests/FIRMutableDictionaryTest.m')
-rw-r--r--Example/Core/Tests/FIRMutableDictionaryTest.m6
1 files changed, 3 insertions, 3 deletions
diff --git a/Example/Core/Tests/FIRMutableDictionaryTest.m b/Example/Core/Tests/FIRMutableDictionaryTest.m
index 56c079c..f6be760 100644
--- a/Example/Core/Tests/FIRMutableDictionaryTest.m
+++ b/Example/Core/Tests/FIRMutableDictionaryTest.m
@@ -14,7 +14,7 @@
#import "FIRTestCase.h"
-#import <FirebaseCore/FIRMutableDictionary.h>
+#import <GoogleUtilities/GULMutableDictionary.h>
const static NSString *const kKey = @"testKey1";
const static NSString *const kValue = @"testValue1";
@@ -22,14 +22,14 @@ const static NSString *const kKey2 = @"testKey2";
const static NSString *const kValue2 = @"testValue2";
@interface FIRMutableDictionaryTest : FIRTestCase
-@property(nonatomic) FIRMutableDictionary *dictionary;
+@property(nonatomic) GULMutableDictionary *dictionary;
@end
@implementation FIRMutableDictionaryTest
- (void)setUp {
[super setUp];
- self.dictionary = [[FIRMutableDictionary alloc] init];
+ self.dictionary = [[GULMutableDictionary alloc] init];
}
- (void)tearDown {