Skip to content

Commit 5bd2dfe

Browse files
committed
[Test] Fix for Xcode7-beta6.
1 parent c4212c0 commit 5bd2dfe

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cartfile.resolved

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
github "Alamofire/Alamofire" "9a1e321cf0a345b32142394446fa1a7e08cf6942"
1+
github "Alamofire/Alamofire" "6a4e014844c6309040f49ec00fe1e7d356ab5ff5"
22
github "duemunk/Async" "abe23c18d8d3a708a325b5db10231388e1ca5b88"

SwiftTaskTests/TypeInferenceTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class TypeInferenceTests: _TestCase
2525
XCTFail("Because of preceding failure-recovering, this failure should never be performed (just added for type-inference test)")
2626
return ["You", "shall", "not", "pass"]
2727
}.then { value, errorInfo -> String in
28-
return " ".join(value!)
28+
return value!.joinWithSeparator(" ")
2929
}.then { value, errorInfo -> Void in
3030
XCTAssertEqual(value!, "Looks good to me")
3131
return

0 commit comments

Comments
 (0)