File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -804,7 +804,7 @@ Overview of node-oracledb functional tests
804
804
67.1.3 can cache and retrieve an aliased pool
805
805
67.1.4 throws an error if the poolAlias already exists in the cache
806
806
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
808
808
67.1.7 makes poolAttrs.poolAlias a read-only attribute on the pool named alias
809
809
67.1.8 retrieves the default pool, even after an aliased pool is created
810
810
67.1.9 retrieves the right pool, even after multiple pools are created
Original file line number Diff line number Diff line change @@ -167,8 +167,8 @@ describe('67. poolCache.js', function() {
167
167
} ) ;
168
168
} ) ;
169
169
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
172
172
// boolean, object, array, etc.
173
173
dbConfig . poolAlias = { } ;
174
174
You can’t perform that action at this time.
0 commit comments