diff options
-rw-r--r-- | test/testsrvr.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testsrvr.lua b/test/testsrvr.lua index ff31442..72b93ab 100644 --- a/test/testsrvr.lua +++ b/test/testsrvr.lua | |||
@@ -15,6 +15,6 @@ while 1 do | |||
15 | assert(command, emsg) | 15 | assert(command, emsg) |
16 | assert(control:send(ack)); | 16 | assert(control:send(ack)); |
17 | print(command); | 17 | print(command); |
18 | (load(command))(); | 18 | ((loadstring or load)(command))(); |
19 | end | 19 | end |
20 | end | 20 | end |