Skip to content

Commit

Permalink
Merge pull request #27 from ningirsu/hotfix/fix-appveyorbuild
Browse files Browse the repository at this point in the history
Fix appveyor build in python34
  • Loading branch information
Moutix committed Apr 4, 2017
2 parents 65dc532 + 397b2d0 commit afca331
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_functional/test_chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def test_bin_ban_json_from_room(self):
self.client_bin.on_data(smpacket.SMPacketClientNSCCM(
message="/ban %s" % self.user_json1.name,
).binary)
time.sleep(0.02)
time.sleep(0.05)
self.assertBinSend(smpacket.SMPacketServerNSCCM)
packet = self.get_smpacket_in(smpacket.SMPacketServerNSCCM, self.client_bin.packet_send)

Expand All @@ -146,7 +146,7 @@ def test_bin_kick_json_from_room(self):
self.client_bin.on_data(smpacket.SMPacketClientNSCCM(
message="/kick %s" % self.user_json1.name,
).binary)
time.sleep(0.02)
time.sleep(0.05)
self.assertBinSend(smpacket.SMPacketServerNSCCM)
packet = self.get_smpacket_in(smpacket.SMPacketServerNSCCM, self.client_bin.packet_send)

Expand Down

0 comments on commit afca331

Please sign in to comment.