aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/socket/echo.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/bun.js/socket/echo.js')
-rw-r--r--test/bun.js/socket/echo.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bun.js/socket/echo.js b/test/bun.js/socket/echo.js
index 3c5d1b7b1..f02637739 100644
--- a/test/bun.js/socket/echo.js
+++ b/test/bun.js/socket/echo.js
@@ -68,7 +68,7 @@ function createOptions(type, message, closeOnDone) {
}
const server = Bun.listen(
- createOptions("[Server]", "response", (socket) => {
+ createOptions("[Server]", "response", socket => {
server.stop();
socket.end();
}),