Fixing test cases after pull request #166 (BSD fix).

This commit is contained in:
lotodore
2012-12-28 21:17:51 +01:00
parent fc8ac6403c
commit 224dd3e6e6
3 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -33,8 +33,8 @@ import de.pokerth.protocol.ProtoBuf.PokerTHMessage.PokerTHMessageType;
public class AnnounceTest extends TestBase {
protected void TestAnnounceMsg(AnnounceMessage announce, int numPlayersOnServer) {
assertEquals(PROTOCOL_VERSION_MAJOR, announce.getProtocolVersion().getMajor());
assertEquals(PROTOCOL_VERSION_MINOR, announce.getProtocolVersion().getMinor());
assertEquals(PROTOCOL_VERSION_MAJOR, announce.getProtocolVersion().getMajorVersion());
assertEquals(PROTOCOL_VERSION_MINOR, announce.getProtocolVersion().getMinorVersion());
assertEquals(ServerType.serverTypeInternetAuth, announce.getServerType());
assertEquals(numPlayersOnServer, announce.getNumPlayersOnServer());
}