Skip to content

Commit

Permalink
fix test case
Browse files Browse the repository at this point in the history
  • Loading branch information
kkazuo committed Dec 18, 2014
1 parent 01171b2 commit 2e93a86
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tests
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,6 @@ int main() {
bb = ((NSArray *)aa.mutableCopy).fmap(^(id o) { return o; });
XCTAssertEqualObjects(aa, bb);
XCTAssertTrue([bb isKindOfClass:[NSMutableArray class]]);
}
- (void)testSetFmap {
Expand All @@ -619,7 +618,6 @@ int main() {
return @([obj intValue] * [obj intValue]);
});
XCTAssertEqualObjects(bb, ([NSSet setWithObjects:@1, @4, @9, nil]));
XCTAssertTrue([bb isKindOfClass:[NSMutableSet class]]);
}
- (void)testDictionaryFmap {
Expand All @@ -643,7 +641,6 @@ int main() {
return @([obj intValue] * 2);
});
XCTAssertEqualObjects(bb, (@{@1: @4, @2: @8, @3: @18}));
XCTAssertTrue([bb isKindOfClass:[NSMutableDictionary class]]);
}
- (void)testPick {
Expand Down

0 comments on commit 2e93a86

Please sign in to comment.