diff options
Diffstat (limited to 'cli/tests/subdir/bench_worker.ts')
| -rw-r--r-- | cli/tests/subdir/bench_worker.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/subdir/bench_worker.ts b/cli/tests/subdir/bench_worker.ts index 619a35fa2..7e85eed03 100644 --- a/cli/tests/subdir/bench_worker.ts +++ b/cli/tests/subdir/bench_worker.ts @@ -1,10 +1,10 @@ -onmessage = function(e): void { +onmessage = function (e): void { const { cmdId, action, data } = e.data; switch (action) { case 0: // Static response postMessage({ cmdId, - data: "HTTP/1.1 200 OK\r\nContent-Length: 12\r\n\r\nHello World\n" + data: "HTTP/1.1 200 OK\r\nContent-Length: 12\r\n\r\nHello World\n", }); break; case 1: // Respond with request data |
