aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/third_party/Immutable/Tests/FSTArraySortedDictionaryTests.m
diff options
context:
space:
mode:
Diffstat (limited to 'Firestore/third_party/Immutable/Tests/FSTArraySortedDictionaryTests.m')
-rw-r--r--Firestore/third_party/Immutable/Tests/FSTArraySortedDictionaryTests.m4
1 files changed, 1 insertions, 3 deletions
diff --git a/Firestore/third_party/Immutable/Tests/FSTArraySortedDictionaryTests.m b/Firestore/third_party/Immutable/Tests/FSTArraySortedDictionaryTests.m
index bf17496..a220a3c 100644
--- a/Firestore/third_party/Immutable/Tests/FSTArraySortedDictionaryTests.m
+++ b/Firestore/third_party/Immutable/Tests/FSTArraySortedDictionaryTests.m
@@ -2,8 +2,6 @@
#import <XCTest/XCTest.h>
-#import "Firestore/Source/Util/FSTAssert.h"
-
@interface FSTArraySortedDictionary (Test)
// Override methods to return subtype.
- (FSTArraySortedDictionary *)dictionaryBySettingObject:(id)aValue forKey:(id)aKey;
@@ -17,7 +15,7 @@
- (NSComparator)defaultComparator {
return ^(id obj1, id obj2) {
- FSTAssert([obj1 respondsToSelector:@selector(compare:)] &&
+ NSAssert([obj1 respondsToSelector:@selector(compare:)] &&
[obj2 respondsToSelector:@selector(compare:)],
@"Objects must support compare: %@ %@", obj1, obj2);
return [obj1 compare:obj2];