Skip to content

Commit 1802cb5

Browse files
Mike Ferrisnethraravindran
authored andcommitted
Fix a syntax error in Foundation.xcodeproj
1 parent c37f47d commit 1802cb5

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

Foundation.xcodeproj/project.pbxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@
496496
5B1FD9D21D6D16580080E83C /* TaskRegistry.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TaskRegistry.swift; sourceTree = "<group>"; };
497497
5B1FD9D31D6D16580080E83C /* TransferState.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TransferState.swift; sourceTree = "<group>"; };
498498
5B1FD9E01D6D178E0080E83C /* libcurl.3.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libcurl.3.dylib; path = usr/lib/libcurl.3.dylib; sourceTree = SDKROOT; };
499-
E429ED441E9638DA0031BC20 /* HTTPURLProtocol.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = HTTPURLProtocol.swift path = HTTPURLProtocol.swift; sourceTree = "<group>"; };
499+
E429ED441E9638DA0031BC20 /* HTTPURLProtocol.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = HTTPURLProtocol.swift; path = HTTPURLProtocol.swift; sourceTree = "<group>"; };
500500
5B1FD9E21D6D17B80080E83C /* TestNSURLSession.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TestNSURLSession.swift; sourceTree = "<group>"; };
501501
5B23AB861CE62D17000DB898 /* Boxing.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Boxing.swift; sourceTree = "<group>"; };
502502
5B23AB881CE62D4D000DB898 /* ReferenceConvertible.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReferenceConvertible.swift; sourceTree = "<group>"; };

TestFoundation/TestNSURLSession.swift

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,19 @@ class TestURLSession : XCTestCase {
2424
//Disabling to avoid https://bugs.swift.org/browse/SR-4677 and a timeout failure
2525
// ("test_dataTaskWithURL", test_dataTaskWithURL),
2626
// ("test_dataTaskWithURLRequest", test_dataTaskWithURLRequest),
27-
// ("test_dataTaskWithURLCompletionHandler", test_dataTaskWithURLCompletionHandler),
28-
// ("test_dataTaskWithURLRequestCompletionHandler", test_dataTaskWithURLRequestCompletionHandler),
27+
("test_dataTaskWithURLCompletionHandler", test_dataTaskWithURLCompletionHandler),
28+
("test_dataTaskWithURLRequestCompletionHandler", test_dataTaskWithURLRequestCompletionHandler),
2929
// ("test_downloadTaskWithURL", test_downloadTaskWithURL),
3030
// ("test_downloadTaskWithURLRequest", test_downloadTaskWithURLRequest),
31-
// ("test_downloadTaskWithRequestAndHandler", test_downloadTaskWithRequestAndHandler),
32-
// ("test_downloadTaskWithURLAndHandler", test_downloadTaskWithURLAndHandler),
31+
("test_downloadTaskWithRequestAndHandler", test_downloadTaskWithRequestAndHandler),
32+
("test_downloadTaskWithURLAndHandler", test_downloadTaskWithURLAndHandler),
3333
// ("test_finishTaskAndInvalidate", test_finishTasksAndInvalidate),
3434
// ("test_taskError", test_taskError),
3535
// ("test_taskCopy", test_taskCopy),
36-
// ("test_cancelTask", test_cancelTask),
37-
// ("test_taskTimeout", test_taskTimeout),
38-
// ("test_verifyRequestHeaders", test_verifyRequestHeaders),
39-
// ("test_verifyHttpAdditionalHeaders", test_verifyHttpAdditionalHeaders),
36+
("test_cancelTask", test_cancelTask),
37+
("test_taskTimeout", test_taskTimeout),
38+
("test_verifyRequestHeaders", test_verifyRequestHeaders),
39+
("test_verifyHttpAdditionalHeaders", test_verifyHttpAdditionalHeaders),
4040
("test_timeoutInterval", test_timeoutInterval),
4141
("test_customProtocol", test_customProtocol),
4242
]

0 commit comments

Comments
 (0)