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 34
34
const oracledb = require ( 'oracledb' ) ;
35
35
const should = require ( 'should' ) ;
36
36
const dbconfig = require ( './dbconfig.js' ) ;
37
- const sodaUtil = require ( './sodaUtil .js' ) ;
37
+ const testsUtil = require ( './testsUtil .js' ) ;
38
38
39
39
describe ( '172. executeMany2.js' , function ( ) {
40
40
@@ -56,7 +56,7 @@ describe('172. executeMany2.js', function() {
56
56
should . not . exist ( err ) ;
57
57
}
58
58
59
- await sodaUtil . assertThrowsAsync (
59
+ await testsUtil . assertThrowsAsync (
60
60
async ( ) => {
61
61
await conn . executeMany (
62
62
`insert into "${ schema } "."NODB_TAB_SALES" ("AMOUNT_SOLD") values (:1)` ,
@@ -98,7 +98,7 @@ describe('172. executeMany2.js', function() {
98
98
[ 1 , "John Smith" ] ,
99
99
{ a : 2 , b : "Changjie" } ,
100
100
] ;
101
- await sodaUtil . assertThrowsAsync (
101
+ await testsUtil . assertThrowsAsync (
102
102
async ( ) => {
103
103
await conn . executeMany (
104
104
`insert into nodb_tab_emp values (:a, :b)` ,
You can’t perform that action at this time.
0 commit comments