Skip to content

Commit fce6bba

Browse files
committed
Fix test numbering typo
1 parent 31deba0 commit fce6bba

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

test/executeMany.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ describe('163. executeMany.js', function() {
515515

516516
}); // 163.10
517517

518-
it('164.11 numIterations - only OUT parameters', function(done) {
518+
it('163.11 numIterations - only OUT parameters', function(done) {
519519
async.series([
520520
function(cb) {
521521
var sql =
@@ -554,9 +554,9 @@ describe('163. executeMany.js', function() {
554554
dotruncate(cb);
555555
}
556556
], done);
557-
}); // 164.11
557+
}); // 163.11
558558

559-
it('164.12 numIterations - No parameters', function(done) {
559+
it('163.12 numIterations - No parameters', function(done) {
560560
async.series([
561561
function(cb) {
562562
var sql = `
@@ -585,9 +585,9 @@ describe('163. executeMany.js', function() {
585585
dotruncate(cb);
586586
}
587587
], done);
588-
}); // 164.12
588+
}); // 163.12
589589

590-
it('164.13 numIterations - DML RETURNING', function(done) {
590+
it('163.13 numIterations - DML RETURNING', function(done) {
591591
async.series([
592592
function(cb) {
593593
var sql = `
@@ -620,7 +620,7 @@ describe('163. executeMany.js', function() {
620620
], done);
621621
}); // 164.13
622622

623-
it('164.14 Negative - set numIterations to be string', function(done) {
623+
it('163.14 Negative - set numIterations to be string', function(done) {
624624
async.series([
625625
function(cb) {
626626
var sql = `
@@ -648,9 +648,9 @@ describe('163. executeMany.js', function() {
648648
dotruncate(cb);
649649
}
650650
], done);
651-
}); // 164.14
651+
}); // 163.14
652652

653-
it('164.15 Negative - set numIterations to be negative value', function(done) {
653+
it('163.15 Negative - set numIterations to be negative value', function(done) {
654654
async.series([
655655
function(cb) {
656656
var sql = `
@@ -682,7 +682,7 @@ describe('163. executeMany.js', function() {
682682
dotruncate(cb);
683683
}
684684
], done);
685-
}); // 164.15
685+
}); // 163.15
686686

687687
var doCreateProc = function(cb) {
688688
var proc = "CREATE OR REPLACE PROCEDURE nodb_proc_em (a_num IN NUMBER, " +

test/list.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4158,8 +4158,8 @@ Overview of node-oracledb functional tests
41584158
163.8 Negative - batchErrors with non-DML statement
41594159
163.9 if batchErrors is disabled
41604160
163.10 Negative - dmlRowCounts with non-DML statement
4161-
164.11 numIterations - only OUT parameters
4162-
164.12 numIterations - No parameters
4163-
164.13 numIterations - DML RETURNING
4164-
164.14 Negative - set numIterations to be string
4165-
164.15 Negative - set numIterations to be negative value
4161+
163.11 numIterations - only OUT parameters
4162+
163.12 numIterations - No parameters
4163+
163.13 numIterations - DML RETURNING
4164+
163.14 Negative - set numIterations to be string
4165+
163.15 Negative - set numIterations to be negative value

0 commit comments

Comments
 (0)