summaryrefslogtreecommitdiff
path: root/http/server_test.ts
diff options
context:
space:
mode:
authorAxetroy <axetroy.dev@gmail.com>2019-09-12 11:31:23 +0800
committerRyan Dahl <ry@tinyclouds.org>2019-09-11 23:31:23 -0400
commit878a9a29e77bcaedd4242618ccf57d1be7dfd7d8 (patch)
tree53fd448fa9cf0295c2498f4f7970f1a720435dcc /http/server_test.ts
parent08087e921ede553d1eaeb682d264c3d4c217a3cd (diff)
bump prettier to 1.18.2 (denoland/deno_std#592)
Original: https://github.com/denoland/deno_std/commit/06958a4ada960665a48ac34f919423e0d8d16951
Diffstat (limited to 'http/server_test.ts')
-rw-r--r--http/server_test.ts8
1 files changed, 3 insertions, 5 deletions
diff --git a/http/server_test.ts b/http/server_test.ts
index 4a904a6f7..692293e80 100644
--- a/http/server_test.ts
+++ b/http/server_test.ts
@@ -504,11 +504,9 @@ test({
let serverIsRunning = true;
p.status()
- .then(
- (): void => {
- serverIsRunning = false;
- }
- )
+ .then((): void => {
+ serverIsRunning = false;
+ })
.catch((_): void => {}); // Ignores the error when closing the process.
await delay(100);