forked from M-Labs/artiq
1
0
Fork 0

test/pc_rpc: tougher test for string encoding

This commit is contained in:
Sebastien Bourdeauducq 2014-10-25 17:32:50 +08:00
parent 0909c5ddfa
commit 47c0352505
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ class RPCCase(unittest.TestCase):
try:
test_object = [5, 2.1, None, True, False,
{"a": 5, 2: np.linspace(0, 10, 1)},
(4, 5), (10,)]
(4, 5), (10,), "ab\nx\"'"]
time.sleep(.5) # wait for the server to start
remote = pc_rpc.Client(test_address, test_port)
try: