We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90b21e7 commit fe0b5a4Copy full SHA for fe0b5a4
allure-okhttp3/src/main/java/io/qameta/allure/okhttp3/AllureOkHttp3.java
@@ -56,7 +56,8 @@ public Response intercept(final Chain chain) throws IOException {
56
57
final Response response = chain.proceed(request);
58
final HttpResponseAttachment.Builder responseAttachmentBuilder = HttpResponseAttachment.Builder
59
- .create("Response").withHeaders(toMapConverter(response.headers().toMultimap()));
+ .create("Response").withResponseCode(response.code())
60
+ .withHeaders(toMapConverter(response.headers().toMultimap()));
61
62
final Response.Builder responseBuilder = response.newBuilder();
63
0 commit comments