File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ vows.describe('Directory creation').addBatch({
55
55
56
56
'when using template' : {
57
57
topic : function ( ) {
58
- tmp . dir ( { template : tmp . tmpdir . concat ( 'clike-XXXXXX-postfix' ) } , this . callback ) ;
58
+ tmp . dir ( { template : path . join ( tmp . tmpdir , 'clike-XXXXXX-postfix' ) } , this . callback ) ;
59
59
} ,
60
60
61
61
'should not return with error' : assert . isNull ,
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ vows.describe('File creation').addBatch({
66
66
67
67
'when using template' : {
68
68
topic : function ( ) {
69
- tmp . file ( { template : tmp . tmpdir . concat ( 'clike-XXXXXX-postfix' ) } , this . callback ) ;
69
+ tmp . file ( { template : path . join ( tmp . tmpdir , 'clike-XXXXXX-postfix' ) } , this . callback ) ;
70
70
} ,
71
71
72
72
'should not return with error' : assert . isNull ,
You can’t perform that action at this time.
0 commit comments