From 98b6eef71eac368692ae249f056a75d89ed0350d Mon Sep 17 00:00:00 2001 From: Paul Beusterien Date: Fri, 6 Jul 2018 09:37:23 -0700 Subject: Split GoogleUtilities from FirebaseCore (#1370) --- Example/Core/Tests/FIRMutableDictionaryTest.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Example/Core/Tests/FIRMutableDictionaryTest.m') 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 +#import 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 { -- cgit v1.2.3