summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2017-01-21 22:31:15 +0100
committertomsmeding <tom.smeding@gmail.com>2017-01-21 22:31:15 +0100
commit935d61f58bc3a2afc50c3050761f9bcfb70d1359 (patch)
tree443672e2146208e3d62df7f5ddf114960ec2b605
parentd31dcbc91d5027a3441e3c659a37bb4db84429c4 (diff)
Modify test.py to test new room_message formatHEADmaster
-rwxr-xr-xtest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test.py b/test.py
index 25c20c8..6e4bac4 100755
--- a/test.py
+++ b/test.py
@@ -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)))