1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-09-10 17:49:38 +02:00

Fix typo: s/interna_server_error/internal_server_error/

This commit is contained in:
Florian Schmaus 2014-03-11 19:30:55 +01:00
parent 7341421ca9
commit 67722aea93
3 changed files with 7 additions and 7 deletions

View file

@ -636,11 +636,11 @@ public class AdHocCommandManager extends Manager {
}
catch (InstantiationException e) {
throw new XMPPException(new XMPPError(
XMPPError.Condition.interna_server_error));
XMPPError.Condition.internal_server_error));
}
catch (IllegalAccessException e) {
throw new XMPPException(new XMPPError(
XMPPError.Condition.interna_server_error));
XMPPError.Condition.internal_server_error));
}
return command;
}

View file

@ -193,7 +193,7 @@ public class Socks5ClientForInitiatorTest {
public void shouldFailIfActivateSocks5ProxyFails() throws Exception {
// build error response as reply to the stream activation
XMPPError xmppError = new XMPPError(XMPPError.Condition.interna_server_error);
XMPPError xmppError = new XMPPError(XMPPError.Condition.internal_server_error);
IQ error = new IQ() {
public String getChildElementXML() {