-
Notifications
You must be signed in to change notification settings - Fork 885
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[extensions] Drop newlines in test string within GroupChatInvitationE…
…lementTest
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,11 +38,11 @@ public class GroupChatInvitationElementTest { | |
@Test | ||
public void serializeFullElement() throws XmlPullParserException, IOException, SmackParsingException { | ||
final String expectedXml = "" + | ||
"<x xmlns='jabber:x:conference'\n" + | ||
" continue='true'\n" + | ||
" jid='[email protected]'\n" + | ||
" password='cauldronburn'\n" + | ||
" reason='Hey Hecate, this is the place for all good witches!'\n" + | ||
"<x xmlns='jabber:x:conference'" + | ||
" continue='true'" + | ||
" jid='[email protected]'" + | ||
" password='cauldronburn'" + | ||
" reason='Hey Hecate, this is the place for all good witches!'" + | ||
" thread='e0ffe42b28561960c6b12b944a092794b9683a38'/>"; | ||
|
||
GroupChatInvitation invitation = new GroupChatInvitation(mucJid, | ||
|