Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies {
// Use JUnit test framework
testImplementation 'junit:junit:4.13'

api 'com.squareup.okhttp3:okhttp:3.12.1'
api 'com.squareup.okhttp3:okhttp:4.8.1'

// https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple
implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public void testAuthenticationHandler() {
AuthenticationHandler authHandler = new AuthenticationHandler(authProvider);
Request request = new Request.Builder().url("https://graph.microsoft.com/v1.0/me/").build();

RealInterceptorChain chain = new RealInterceptorChain(null, null, null, null, 0, request, null, null, 0, 0, 0);
RealInterceptorChain chain = new RealInterceptorChain(null, null, 0, null, request, 0, 0, 0);

try {
authHandler.intercept(chain);
Expand Down