File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 3434const oracledb = require ( 'oracledb' ) ;
3535const should = require ( 'should' ) ;
3636const dbconfig = require ( './dbconfig.js' ) ;
37- const sodaUtil = require ( './sodaUtil .js' ) ;
37+ const testsUtil = require ( './testsUtil .js' ) ;
3838
3939describe ( '172. executeMany2.js' , function ( ) {
4040
@@ -56,7 +56,7 @@ describe('172. executeMany2.js', function() {
5656 should . not . exist ( err ) ;
5757 }
5858
59- await sodaUtil . assertThrowsAsync (
59+ await testsUtil . assertThrowsAsync (
6060 async ( ) => {
6161 await conn . executeMany (
6262 `insert into "${ schema } "."NODB_TAB_SALES" ("AMOUNT_SOLD") values (:1)` ,
@@ -98,7 +98,7 @@ describe('172. executeMany2.js', function() {
9898 [ 1 , "John Smith" ] ,
9999 { a : 2 , b : "Changjie" } ,
100100 ] ;
101- await sodaUtil . assertThrowsAsync (
101+ await testsUtil . assertThrowsAsync (
102102 async ( ) => {
103103 await conn . executeMany (
104104 `insert into nodb_tab_emp values (:a, :b)` ,
You can’t perform that action at this time.
0 commit comments