Skip to content

Commit 2775551

Browse files
committed
Fix test description
1 parent 15df1fa commit 2775551

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/list.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -804,7 +804,7 @@ Overview of node-oracledb functional tests
804804
67.1.3 can cache and retrieve an aliased pool
805805
67.1.4 throws an error if the poolAlias already exists in the cache
806806
67.1.5 does not throw an error if multiple pools are created without an alias
807-
67.1.6 throws an error if poolAttrs.poolAlias is not a string or number
807+
67.1.6 throws an error if poolAttrs.poolAlias is not a string
808808
67.1.7 makes poolAttrs.poolAlias a read-only attribute on the pool named alias
809809
67.1.8 retrieves the default pool, even after an aliased pool is created
810810
67.1.9 retrieves the right pool, even after multiple pools are created

test/poolCache.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,8 @@ describe('67. poolCache.js', function() {
167167
});
168168
});
169169

170-
it('67.1.6 throws an error if poolAttrs.poolAlias is not a string or number', function(done) {
171-
// Setting poolAlias to something other than a string or number. Could be
170+
it('67.1.6 throws an error if poolAttrs.poolAlias is not a string', function(done) {
171+
// Setting poolAlias to something other than a string. Could be
172172
// boolean, object, array, etc.
173173
dbConfig.poolAlias = {};
174174

0 commit comments

Comments
 (0)