aboutsummaryrefslogtreecommitdiffstats
path: root/it
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@sonarsource.com>2017-02-01 13:38:13 +0100
committerJulien Lancelot <julien.lancelot@sonarsource.com>2017-02-02 17:05:26 +0100
commit57561f65d0e8189a9ab0732b53057e0df46ec5ab (patch)
treed196faf2547cba197a43c90b49f8287f7147a879 /it
parentf8a905f962697cee341f9b1c266844091b8d3be7 (diff)
downloadsonarqube-57561f65d0e8189a9ab0732b53057e0df46ec5ab.tar.gz
sonarqube-57561f65d0e8189a9ab0732b53057e0df46ec5ab.zip
SONAR-8460 WS errors does not return bundled messages
Diffstat (limited to 'it')
-rw-r--r--it/it-tests/src/test/java/it/user/SsoAuthenticationTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/it/it-tests/src/test/java/it/user/SsoAuthenticationTest.java b/it/it-tests/src/test/java/it/user/SsoAuthenticationTest.java
index ac17347a99c..033a743b4d0 100644
--- a/it/it-tests/src/test/java/it/user/SsoAuthenticationTest.java
+++ b/it/it-tests/src/test/java/it/user/SsoAuthenticationTest.java
@@ -131,7 +131,7 @@ public class SsoAuthenticationTest {
assertThat(response.request().url().toString()).contains("sessions/unauthorized");
List<String> logsLines = FileUtils.readLines(orchestrator.getServer().getWebLogs(), Charsets.UTF_8);
- assertThat(logsLines).doesNotContain("org.sonar.server.exceptions.BadRequestException: user.bad_login");
+ assertThat(logsLines).doesNotContain("org.sonar.server.exceptions.BadRequestException: Use only letters, numbers, and .-_@ please.");
USER_RULE.verifyUserDoesNotExist(USER_LOGIN);
}