Skip to content

Commit a43bada

Browse files
committed
Enable maxsize 32767 case in test/binding.js
1 parent 39701c9 commit a43bada

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/binding.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -689,13 +689,12 @@ describe('4. binding.js', function() {
689689
);
690690
})
691691

692-
it.skip('4.4.4 maximum value is 32767', function(done) {
692+
it('4.4.4 maximum value is 32767', function(done) {
693693
connection.execute(
694694
"BEGIN :o := lpad('A',32767,'x'); END;",
695695
{ o: { type: oracledb.STRING, dir : oracledb.BIND_OUT, maxSize:50000 } },
696696
function(err, result) {
697697
should.exist(err);
698-
console.log(result.outBinds.o.length);
699698
done();
700699
}
701700
);

0 commit comments

Comments
 (0)