From ad945cbe450bce968e0bd6c9f33027e8c6c73c35 Mon Sep 17 00:00:00 2001 From: Matteo Mara Date: Wed, 24 Apr 2024 11:36:56 +0200 Subject: [PATCH] SONAR-22119 update test after updating the bouncycastle dependency to version 1.78.1 --- .../alm/client/github/security/GithubAppSecurityImplTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/sonar-alm-client/src/test/java/org/sonar/alm/client/github/security/GithubAppSecurityImplTest.java b/server/sonar-alm-client/src/test/java/org/sonar/alm/client/github/security/GithubAppSecurityImplTest.java index 5dde4896e85..3e5972d9490 100644 --- a/server/sonar-alm-client/src/test/java/org/sonar/alm/client/github/security/GithubAppSecurityImplTest.java +++ b/server/sonar-alm-client/src/test/java/org/sonar/alm/client/github/security/GithubAppSecurityImplTest.java @@ -84,7 +84,7 @@ public class GithubAppSecurityImplTest { assertThatThrownBy(() -> underTest.createAppToken(githubAppConfiguration.getId(), githubAppConfiguration.getPrivateKey())) .isInstanceOf(IllegalArgumentException.class) .hasRootCauseInstanceOf(IOException.class) - .hasRootCauseMessage("-----END RSA PRIVATE KEY not found"); + .hasRootCauseMessage("-----END RSA PRIVATE KEY----- not found"); } @Test -- 2.39.5