diff options
author | tomsmeding <tom.smeding@gmail.com> | 2017-01-21 22:31:15 +0100 |
---|---|---|
committer | tomsmeding <tom.smeding@gmail.com> | 2017-01-21 22:31:15 +0100 |
commit | 935d61f58bc3a2afc50c3050761f9bcfb70d1359 (patch) | |
tree | 443672e2146208e3d62df7f5ddf114960ec2b605 /test.py | |
parent | d31dcbc91d5027a3441e3c659a37bb4db84429c4 (diff) |
Diffstat (limited to 'test.py')
-rwxr-xr-x | test.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -150,13 +150,13 @@ def testid(s,t): sendline(s,"room_message game room "+str(tid)+" 4") sendraw(s,"kaas") expect(s,"ok room_message") - expect(t,"room_message "+str(sid)+" 4") + expect(t,"room_message game room "+str(sid)+" 4") expectraw(t,"kaas") sendline(t,"room_message game room "+str(sid)+" 256") sendraw(t,"".join(chr(i) for i in range(256))) expect(t,"ok room_message") - expect(s,"room_message "+str(tid)+" 256") + expect(s,"room_message game room "+str(tid)+" 256") expectraw(s,"".join(chr(i) for i in range(256))) |