aboutsummaryrefslogtreecommitdiffstats
path: root/it
diff options
context:
space:
mode:
authorTeryk Bellahsene <teryk.bellahsene@sonarsource.com>2017-01-27 16:50:25 +0100
committerTeryk Bellahsene <teryk.bellahsene@sonarsource.com>2017-01-30 14:57:14 +0100
commit7fc68e34923e3fe08b1b0dc81f7def4ab76d2b1e (patch)
tree320ee8e221adc484919dbcafe092cfe3b8074748 /it
parent9caa226fd480041bd57a3db46d8be4a81a55840d (diff)
downloadsonarqube-7fc68e34923e3fe08b1b0dc81f7def4ab76d2b1e.tar.gz
sonarqube-7fc68e34923e3fe08b1b0dc81f7def4ab76d2b1e.zip
SONAR-8388 HTTP POST request parameters are handled as UTF-8 by default
Diffstat (limited to 'it')
-rw-r--r--it/it-tests/src/test/java/it/settings/DeprecatedPropertiesWsTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/it/it-tests/src/test/java/it/settings/DeprecatedPropertiesWsTest.java b/it/it-tests/src/test/java/it/settings/DeprecatedPropertiesWsTest.java
index c0f431a7e45..876cfccd071 100644
--- a/it/it-tests/src/test/java/it/settings/DeprecatedPropertiesWsTest.java
+++ b/it/it-tests/src/test/java/it/settings/DeprecatedPropertiesWsTest.java
@@ -353,7 +353,7 @@ public class DeprecatedPropertiesWsTest {
.url(url));
}
- public static Response call(Request.Builder requestBuilder) {
+ private static Response call(Request.Builder requestBuilder) {
try {
requestBuilder.header("Authorization", Credentials.basic("admin", "admin"));
Response response = new OkHttpClient.Builder()