Skip to content

Commit 4cf7e6f

Browse files
authored
fix(auto-instrumentations-node): correct typo (open-telemetry#2666)
1 parent f97bd70 commit 4cf7e6f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

metapackages/auto-instrumentations-node/test/register.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ describe('Register', function () {
9090
it('shuts down the NodeSDK when SIGTERM is received', async () => {
9191
const runPromise = runWithRegister('./test-app/app-server.js');
9292
const { child } = runPromise;
93-
await waitForString(child.stdout!, 'Finshed request');
93+
await waitForString(child.stdout!, 'Finished request');
9494
child.kill('SIGTERM');
9595
const { stdout } = await runPromise;
9696

metapackages/auto-instrumentations-node/test/test-app/app-server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const options = {
2727
const req = http.request(options);
2828
req.end();
2929
req.on('close', () => {
30-
console.log('Finshed request');
30+
console.log('Finished request');
3131
});
3232

3333
// Make sure there is work on the event loop

0 commit comments

Comments
 (0)