Skip to content

Commit 102e97f

Browse files
committed
Update test usage of utility script
1 parent b811089 commit 102e97f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/executeMany2.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
const oracledb = require('oracledb');
3535
const should = require('should');
3636
const dbconfig = require('./dbconfig.js');
37-
const sodaUtil = require('./sodaUtil.js');
37+
const testsUtil = require('./testsUtil.js');
3838

3939
describe('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)`,

0 commit comments

Comments
 (0)