Skip to content

Commit 94a5605

Browse files
committed
Remove files created during LOB tests
1 parent 61d6817 commit 94a5605

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

test/dataTypeBlob.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
* 51 onwards are for other tests
3737
*
3838
*****************************************************************************/
39-
"use strict"
39+
'use strict';
4040

4141
var oracledb = require('oracledb');
4242
var fs = require('fs');
@@ -222,6 +222,12 @@ describe('41. dataTypeBlob', function() {
222222

223223
}
224224
);
225+
},
226+
function deleteOutFile(callback) {
227+
fs.unlink(outFileName, function(err) {
228+
should.not.exist(err);
229+
callback();
230+
});
225231
}
226232
], done);
227233
}) // 41.1.1

test/dataTypeClob.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* 51 onwards are for other tests
3838
*
3939
*****************************************************************************/
40-
"use strict";
40+
'use strict';
4141

4242
var oracledb = require('oracledb');
4343
var fs = require('fs');
@@ -257,6 +257,12 @@ describe('40. dataTypeClob.js', function() {
257257
});
258258
}
259259
);
260+
},
261+
function deleteOutFile(callback) {
262+
fs.unlink(outFileName, function(err) {
263+
should.not.exist(err);
264+
callback();
265+
});
260266
}
261267
], done); // async
262268

0 commit comments

Comments
 (0)