diff options
author | E. Westbrook <git@westbrook.io> | 2020-03-27 16:55:04 -0600 |
---|---|---|
committer | E. Westbrook <git@westbrook.io> | 2020-03-27 16:55:04 -0600 |
commit | 68aeb39dc2202f31395676770128dd8bafb6b1d6 (patch) | |
tree | 425a36e90a2eca66876d85d53e3f4d247cda8449 | |
parent | 733af884f1aa18ff469bf3c4d18810e815853211 (diff) | |
download | luasocket-68aeb39dc2202f31395676770128dd8bafb6b1d6.tar.gz luasocket-68aeb39dc2202f31395676770128dd8bafb6b1d6.tar.bz2 luasocket-68aeb39dc2202f31395676770128dd8bafb6b1d6.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 | ||