aboutsummaryrefslogtreecommitdiffhomepage
path: root/Example/Core/Tests/FIRMutableDictionaryTest.m
diff options
context:
space:
mode:
authorGravatar Paul Beusterien <paulbeusterien@google.com>2018-07-06 09:37:23 -0700
committerGravatar GitHub <noreply@github.com>2018-07-06 09:37:23 -0700
commit98b6eef71eac368692ae249f056a75d89ed0350d (patch)
tree0a4a16612d7bbb5eeba981b40564db3c2fc66833 /Example/Core/Tests/FIRMutableDictionaryTest.m
parenta3f792f3f093e913be5823cb4df9dfeac7612a52 (diff)
Split GoogleUtilities from FirebaseCore (#1370)
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 {