-
Notifications
You must be signed in to change notification settings - Fork 782
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#137 Making NSURLSession extensible #169
Conversation
287a07a
to
d3888fb
Compare
Codecov Report
@@ Coverage Diff @@
## master #169 +/- ##
==========================================
+ Coverage 80.09% 80.19% +0.09%
==========================================
Files 41 43 +2
Lines 3447 3463 +16
Branches 146 147 +1
==========================================
+ Hits 2761 2777 +16
Misses 686 686
Continue to review full report at Codecov.
|
d3888fb
to
e16b8aa
Compare
e16b8aa
to
69d0b3b
Compare
@shahmharsh I see the signed individual contributor CLA for you, thanks for doing that. @protocol86 will be reviewing this change for you. |
NSURLSession *customSession = [NSURLSession sessionWithConfiguration:config]; | ||
[OIDURLSessionProvider setSession:customSession]; | ||
NSURLSession *session = [OIDURLSessionProvider session]; | ||
XCTAssertEqual(session, customSession); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please use XCTAssertEqualObjects
here.
Source/OIDURLSessionProvider.m
Outdated
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
static NSURLSession * __nullable gURLSession; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove space after "*"
@protocol86 comments addressed |
When can I expect this to be merged and released? |
Implements #137