Skip to content

Commit

Permalink
fix(auto-instrumentations-node): correct typo (#2666)
Browse files Browse the repository at this point in the history
  • Loading branch information
garysassano authored Jan 17, 2025
1 parent f97bd70 commit 4cf7e6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ describe('Register', function () {
it('shuts down the NodeSDK when SIGTERM is received', async () => {
const runPromise = runWithRegister('./test-app/app-server.js');
const { child } = runPromise;
await waitForString(child.stdout!, 'Finshed request');
await waitForString(child.stdout!, 'Finished request');
child.kill('SIGTERM');
const { stdout } = await runPromise;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const options = {
const req = http.request(options);
req.end();
req.on('close', () => {
console.log('Finshed request');
console.log('Finished request');
});

// Make sure there is work on the event loop
Expand Down

0 comments on commit 4cf7e6f

Please sign in to comment.