Skip to content

Commit 3c6090e

Browse files
committed
Ensure closeTestServer is actually called in integration tests
1 parent a4ba700 commit 3c6090e

File tree

2 files changed

+2
-2
lines changed
  • dev-packages
    • node-core-integration-tests/suites/tracing/requests/fetch-no-tracing-no-spans
    • node-integration-tests/suites/tracing/requests/fetch-no-tracing-no-spans

2 files changed

+2
-2
lines changed

dev-packages/node-core-integration-tests/suites/tracing/requests/fetch-no-tracing-no-spans/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ describe('outgoing fetch', () => {
4444
})
4545
.start()
4646
.completed();
47-
closeTestServer;
47+
closeTestServer();
4848
});
4949
});
5050
});

dev-packages/node-integration-tests/suites/tracing/requests/fetch-no-tracing-no-spans/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ describe('outgoing fetch', () => {
4444
})
4545
.start()
4646
.completed();
47-
closeTestServer;
47+
closeTestServer();
4848
});
4949
});
5050
});

0 commit comments

Comments
 (0)