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() {
8181
8282 } ) ; // 54.1
8383
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 ) {
8585
8686 conn . createLob (
8787 oracledb . CLOB ,
@@ -92,7 +92,7 @@ describe('54. lobClose.js', function() {
9292 should . not . exist ( err ) ;
9393
9494 lob . close ( function ( err ) {
95- should . exist ( err ) ;
95+ should . not . exist ( err ) ;
9696 done ( ) ;
9797 } ) ;
9898 } ) ; // first close();
@@ -180,10 +180,6 @@ describe('54. lobClose.js', function() {
180180 ) ;
181181 cb ( ) ;
182182 } ) ;
183-
184- lob2 . on ( 'finish' , function ( ) {
185- cb ( new Error ( "LOB emits 'finish' event!" ) ) ;
186- } ) ;
187183 } ,
188184 function ( cb ) {
189185 ( lob2 . chunkSize ) . should . be . a . Number ( ) ;
You can’t perform that action at this time.
0 commit comments