You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cl...@apache.org on 2016/07/05 23:42:07 UTC

activemq-artemis git commit: ARTEMIS-409 fixing test

Repository: activemq-artemis
Updated Branches:
  refs/heads/master ee28eac38 -> 05ac53a30


ARTEMIS-409 fixing test


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/05ac53a3
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/05ac53a3
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/05ac53a3

Branch: refs/heads/master
Commit: 05ac53a3052074d891c0ce9b6408e7e063009095
Parents: ee28eac
Author: Clebert Suconic <cl...@apache.org>
Authored: Tue Jul 5 19:41:49 2016 -0400
Committer: Clebert Suconic <cl...@apache.org>
Committed: Tue Jul 5 19:41:49 2016 -0400

----------------------------------------------------------------------
 .../activemq/artemis/tests/integration/stomp/v11/StompV11Test.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/05ac53a3/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/stomp/v11/StompV11Test.java
----------------------------------------------------------------------
diff --git a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/stomp/v11/StompV11Test.java b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/stomp/v11/StompV11Test.java
index 22b86a5..8e6fbb4 100644
--- a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/stomp/v11/StompV11Test.java
+++ b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/stomp/v11/StompV11Test.java
@@ -114,7 +114,7 @@ public class StompV11Test extends StompV11TestBase {
       ClientStompFrame frame = conn.connect("invaliduser", defPass);
       assertFalse(conn.isConnected());
       assertTrue("ERROR".equals(frame.getCommand()));
-      assertTrue(frame.getBody().contains("The login account is not valid."));
+      assertTrue(frame.getBody().contains("Security Error occurred"));
    }
 
    @Test