Skip to content

Commit

Permalink
test: change callback function to arrow function
Browse files Browse the repository at this point in the history
PR-URL: #17734
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Jon Moss <me@jonathanmoss.me>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
  • Loading branch information
rt33 authored and MylesBorins committed Feb 13, 2018
1 parent 979af51 commit cb78543
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -10,8 +10,8 @@ function test() {
d.on('error', function errorHandler() {
});

d.run(function() {
d2.run(function() {
d.run(() => {
d2.run(() => {
const fs = require('fs');
fs.exists('/non/existing/file', function onExists() {
throw new Error('boom!');
Expand Down

0 comments on commit cb78543

Please sign in to comment.