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 2f95812 commit 8fa0669Copy full SHA for 8fa0669
allure-rest-assured/src/main/java/io/qameta/allure/restassured/AllureRestAssured.java
@@ -51,11 +51,9 @@ public class AllureRestAssured implements OrderedFilter {
51
private String requestAttachmentName = "Request";
52
private String responseAttachmentName;
53
54
- public AllureRestAssured() {
55
- }
56
-
57
- public AllureRestAssured(int maxAllowedPrettifyLength) {
+ public AllureRestAssured setMaxAllowedPrettifyLength(final int maxAllowedPrettifyLength) {
58
this.maxAllowedPrettifyLength = maxAllowedPrettifyLength;
+ return this;
59
}
60
61
public AllureRestAssured setRequestTemplate(final String templatePath) {
0 commit comments