diff options
| author | Caleb Maclennan <caleb@alerque.com> | 2022-03-19 17:42:53 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-19 17:42:53 +0300 |
| commit | a36818d3f3afd8758ec10991a5cb08ebdaca6329 (patch) | |
| tree | 445c27832ac4fb48a03c146fa7c797dc4880c099 /test/utestsrvr.lua | |
| parent | 6952262e6a1315b14935ddd0ea511c202c0154ba (diff) | |
| parent | 8390d07774a1ba1a597d809a1a2562d88ecce19d (diff) | |
| download | luasocket-a36818d3f3afd8758ec10991a5cb08ebdaca6329.tar.gz luasocket-a36818d3f3afd8758ec10991a5cb08ebdaca6329.tar.bz2 luasocket-a36818d3f3afd8758ec10991a5cb08ebdaca6329.zip | |
Merge pull request #354 from lunarmodules/linter
Diffstat (limited to 'test/utestsrvr.lua')
| -rw-r--r-- | test/utestsrvr.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/utestsrvr.lua b/test/utestsrvr.lua index a96b570..b6e4246 100644 --- a/test/utestsrvr.lua +++ b/test/utestsrvr.lua | |||
| @@ -9,7 +9,7 @@ ack = "\n"; | |||
| 9 | while 1 do | 9 | while 1 do |
| 10 | print("server: waiting for client connection..."); | 10 | print("server: waiting for client connection..."); |
| 11 | control = assert(server:accept()); | 11 | control = assert(server:accept()); |
| 12 | while 1 do | 12 | while 1 do |
| 13 | command = assert(control:receive()); | 13 | command = assert(control:receive()); |
| 14 | assert(control:send(ack)); | 14 | assert(control:send(ack)); |
| 15 | ((loadstring or load)(command))(); | 15 | ((loadstring or load)(command))(); |
