ARTEMIS-409 fixing test

This commit is contained in:
Clebert Suconic 2016-07-05 19:41:49 -04:00
parent ee28eac38e
commit 05ac53a305
1 changed files with 1 additions and 1 deletions

View File

@ -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