Skip to content

Commit d05c22c

Browse files
committed
Update DB Object tests
1 parent 3a9c0d9 commit d05c22c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/dbObject5.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,9 @@ describe('204. dbObject5.js', () => {
8787
)`;
8888
const plsql = testsUtil.sqlCreateTable(TABLE, sql);
8989
await conn.execute(plsql);
90+
await conn.execute(proc1);
91+
await conn.execute(proc2);
92+
await conn.execute(proc3);
9093
}); // before()
9194

9295
after(async () => {
@@ -193,9 +196,6 @@ describe('204. dbObject5.js', () => {
193196
}); // 204.4
194197

195198
it('204.5 call procedure with 2 OUT binds of DbObject', async function() {
196-
await conn.execute(proc1);
197-
await conn.execute(proc2);
198-
await conn.execute(proc3);
199199

200200
let result = await conn.execute(
201201
`BEGIN nodb_getDataCursor3(p_cur1 => :p_cur1,

0 commit comments

Comments
 (0)