File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ const tests = [
3636 d . run ( function ( ) {
3737 setTimeout ( function ( ) {
3838 throw new Error ( 'boom!' ) ;
39- } ) ;
39+ } , 1 ) ;
4040 } ) ;
4141 } ,
4242
@@ -65,7 +65,7 @@ const tests = [
6565
6666 d . run ( function ( ) {
6767 var fs = require ( 'fs' ) ;
68- fs . exists ( '/non/existing/file' , function onExists ( exists ) {
68+ fs . exists ( '/non/existing/file' , function onExists ( ) {
6969 throw new Error ( 'boom!' ) ;
7070 } ) ;
7171 } ) ;
@@ -82,7 +82,7 @@ const tests = [
8282 d2 . run ( function ( ) {
8383 setTimeout ( function ( ) {
8484 throw new Error ( 'boom!' ) ;
85- } ) ;
85+ } , 1 ) ;
8686 } ) ;
8787 } ) ;
8888 } ,
@@ -129,7 +129,7 @@ const tests = [
129129 d . run ( function ( ) {
130130 d2 . run ( function ( ) {
131131 var fs = require ( 'fs' ) ;
132- fs . exists ( '/non/existing/file' , function onExists ( exists ) {
132+ fs . exists ( '/non/existing/file' , function onExists ( ) {
133133 throw new Error ( 'boom!' ) ;
134134 } ) ;
135135 } ) ;
You can’t perform that action at this time.
0 commit comments