Skip to content

Commit

Permalink
changed parameters in integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
pj-spoelders committed Nov 12, 2024
1 parent b5f9fa9 commit e82b487
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions integration-test/testcases/pool.basic.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,15 +174,15 @@ function createPoolWithDefaultSize(factory: websocketFactory, container: Started
});
}

function createPool(factory: websocketFactory, container: StartedTestContainer, min: number, max: number) {
function createPool(factory: websocketFactory, container: StartedTestContainer, minimumPoolSize: number, maximumPoolSize: number) {
return new ExasolPool(factory, {
host: container.getHost(),
port: container.getMappedPort(8563),
user: 'sys',
password: 'exasol',
encryption: false,
min: min,
max: max,
minimumPoolSize: minimumPoolSize,
maximumPoolSize: maximumPoolSize,
});
}

Expand Down

0 comments on commit e82b487

Please sign in to comment.