File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ describe('54. lobClose.js', function() {
81
81
82
82
} ) ; // 54.1
83
83
84
- it . skip ( '54.2 can not call close() multiple times' , function ( done ) {
84
+ it ( '54.2 can not call close() multiple times' , function ( done ) {
85
85
86
86
conn . createLob (
87
87
oracledb . CLOB ,
@@ -92,7 +92,7 @@ describe('54. lobClose.js', function() {
92
92
should . not . exist ( err ) ;
93
93
94
94
lob . close ( function ( err ) {
95
- should . exist ( err ) ;
95
+ should . not . exist ( err ) ;
96
96
done ( ) ;
97
97
} ) ;
98
98
} ) ; // first close();
@@ -180,10 +180,6 @@ describe('54. lobClose.js', function() {
180
180
) ;
181
181
cb ( ) ;
182
182
} ) ;
183
-
184
- lob2 . on ( 'finish' , function ( ) {
185
- cb ( new Error ( "LOB emits 'finish' event!" ) ) ;
186
- } ) ;
187
183
} ,
188
184
function ( cb ) {
189
185
( lob2 . chunkSize ) . should . be . a . Number ( ) ;
You can’t perform that action at this time.
0 commit comments