diff options
author | E. Westbrook <git@westbrook.io> | 2020-03-27 16:55:04 -0600 |
---|---|---|
committer | Eric Westbrook <github@westbrook.io> | 2020-03-28 22:21:23 +0000 |
commit | 84e5336e8b9f364e675c3a55a8bb04c1fddb68bc (patch) | |
tree | f1e23fc5d96850cb59d21483ccfa3e41aa4df98a | |
parent | 78a1657c7db5510ba66f8d4491f1e8e7370c5943 (diff) | |
download | luasocket-84e5336e8b9f364e675c3a55a8bb04c1fddb68bc.tar.gz luasocket-84e5336e8b9f364e675c3a55a8bb04c1fddb68bc.tar.bz2 luasocket-84e5336e8b9f364e675c3a55a8bb04c1fddb68bc.zip |
test/tcp-getoptions: bugfix: missing "socket =" in require"socket"
-rwxr-xr-x | test/tcp-getoptions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tcp-getoptions b/test/tcp-getoptions index 777ccc3..d98b189 100755 --- a/test/tcp-getoptions +++ b/test/tcp-getoptions | |||
@@ -1,6 +1,6 @@ | |||
1 | #!/usr/bin/env lua | 1 | #!/usr/bin/env lua |
2 | 2 | ||
3 | require"socket" | 3 | local socket = require"socket" |
4 | 4 | ||
5 | port = 8765 | 5 | port = 8765 |
6 | 6 | ||