|
18 | 18 |
|
19 | 19 | import com.epam.reportportal.formatting.http.Constants;
|
20 | 20 | import com.epam.reportportal.formatting.http.converters.DefaultCookieConverter;
|
21 |
| -import com.epam.reportportal.formatting.http.prettiers.JsonPrettier; |
22 |
| -import com.epam.reportportal.formatting.http.prettiers.XmlPrettier; |
| 21 | +import com.epam.reportportal.formatting.http.prettifiers.JsonPrettifier; |
| 22 | +import com.epam.reportportal.formatting.http.prettifiers.XmlPrettifier; |
23 | 23 | import com.epam.reportportal.listeners.ItemStatus;
|
24 | 24 | import com.epam.reportportal.listeners.LogLevel;
|
25 | 25 | import com.epam.reportportal.message.ReportPortalMessage;
|
@@ -118,9 +118,9 @@ public Response next(FilterableRequestSpecification requestSpecification,
|
118 | 118 | public static Iterable<Object[]> requestData() {
|
119 | 119 | return Arrays.asList(
|
120 | 120 | new Object[]{JSON_TYPE, "{\"object\": {\"key\": \"value\"}}", "{\"object\": {\"key\": \"value\"}}",
|
121 |
| - JsonPrettier.INSTANCE, null, null}, |
| 121 | + JsonPrettifier.INSTANCE, null, null}, |
122 | 122 | new Object[]{"application/xml", "<test><key><value>value</value></key></test>",
|
123 |
| - "<test><key><value>value</value></key></test>", XmlPrettier.INSTANCE, null, null} |
| 123 | + "<test><key><value>value</value></key></test>", XmlPrettifier.INSTANCE, null, null} |
124 | 124 | );
|
125 | 125 | }
|
126 | 126 |
|
@@ -612,7 +612,7 @@ public void test_rest_assured_log_filter_type() {
|
612 | 612 | @Test
|
613 | 613 | public void test_rest_assured_logger_text_as_file_multipart() {
|
614 | 614 | String textPath = "test.json";
|
615 |
| - String text = JsonPrettier.INSTANCE.apply(new String(getResource(textPath))); |
| 615 | + String text = JsonPrettifier.INSTANCE.apply(new String(getResource(textPath))); |
616 | 616 | String requestType = ContentType.MULTIPART_FORM_DATA.getMimeType();
|
617 | 617 | String textType = ContentType.APPLICATION_JSON.getMimeType();
|
618 | 618 |
|
|
0 commit comments