Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Adrian Cole <[email protected]>
  • Loading branch information
Adrian Cole committed Dec 17, 2023
1 parent bbf1e36 commit e380520
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
import java.util.Collections;
import okhttp3.mockwebserver.MockResponse;
import okhttp3.mockwebserver.RecordedRequest;
import org.junit.Ignore;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.springframework.http.client.ClientHttpRequestFactory;
import org.springframework.http.client.ClientHttpRequestInterceptor;
import org.springframework.http.client.HttpComponentsClientHttpRequestFactory;
Expand Down Expand Up @@ -83,11 +84,11 @@ ClientHttpRequestFactory configureClient(ClientHttpRequestInterceptor intercepto
testSpanHandler.takeRemoteSpan(Span.Kind.CLIENT);
}

@Override @Ignore("blind to the implementation of redirects")
@Override @Disabled("blind to the implementation of redirects")
public void redirect() {
}

@Override @Ignore("doesn't know the remote address")
@Override @Disabled("doesn't know the remote address")
public void reportsServerAddress() {
}
}

0 comments on commit e380520

Please sign in to comment.