You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2017/10/13 09:11:32 UTC

[2/2] syncope git commit: Adjusting CLIITCase test to latest changes

Adjusting CLIITCase test to latest changes


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/6edd8c77
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/6edd8c77
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/6edd8c77

Branch: refs/heads/master
Commit: 6edd8c772c62b3a3bd611fa9cd5eb0b7faf7e7e6
Parents: 2262c52
Author: Francesco Chicchiriccò <il...@apache.org>
Authored: Fri Oct 13 11:11:14 2017 +0200
Committer: Francesco Chicchiriccò <il...@apache.org>
Committed: Fri Oct 13 11:11:22 2017 +0200

----------------------------------------------------------------------
 .../src/test/java/org/apache/syncope/fit/cli/CLIITCase.java      | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/6edd8c77/fit/core-reference/src/test/java/org/apache/syncope/fit/cli/CLIITCase.java
----------------------------------------------------------------------
diff --git a/fit/core-reference/src/test/java/org/apache/syncope/fit/cli/CLIITCase.java b/fit/core-reference/src/test/java/org/apache/syncope/fit/cli/CLIITCase.java
index 431e119..f9c9a9b 100644
--- a/fit/core-reference/src/test/java/org/apache/syncope/fit/cli/CLIITCase.java
+++ b/fit/core-reference/src/test/java/org/apache/syncope/fit/cli/CLIITCase.java
@@ -296,7 +296,9 @@ public class CLIITCase extends AbstractITCase {
                     "connid"));
             process = PROCESS_BUILDER.start();
             final String result = IOUtils.toString(process.getInputStream(), StandardCharsets.UTF_8);
-            assertTrue(result.contains("\"level\" : \"DEBUG\","));
+            assertTrue(result.contains("\"level\" : \"INFO\","));
+            assertTrue(result.contains("\"loggerName\" :"
+                    + " \"org.apache.syncope.core.provisioning.api.ConnIdBundleManager\""));
         } catch (IOException e) {
             fail(e.getMessage());
         } finally {