aboutsummaryrefslogtreecommitdiff
path: root/test/testsrvr.lua
diff options
context:
space:
mode:
Diffstat (limited to 'test/testsrvr.lua')
-rw-r--r--test/testsrvr.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testsrvr.lua b/test/testsrvr.lua
index f1972c2..7ddff6e 100644
--- a/test/testsrvr.lua
+++ b/test/testsrvr.lua
@@ -10,6 +10,6 @@ while 1 do
10 command = assert(control:receive()); 10 command = assert(control:receive());
11 assert(control:send(ack)); 11 assert(control:send(ack));
12 print(command); 12 print(command);
13 (loadstring(command))(); 13 (load(command))();
14 end 14 end
15end 15end