Skip to content

Commit bedb34f

Browse files
committed
fixed tests title
1 parent 1254091 commit bedb34f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lib/tests/get_estimated_fees_methods.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ const execute = (description) => {
117117
});
118118

119119
describe('getEstimatedFeesForNextPegOutEvent', () => {
120-
it('should allow constructing a second pegout request using the estimated fees from getEstimatedFeesForNextPegOutEvent and process both', async () => {
120+
it('should allow constructing a pegout request using the estimated fees from getEstimatedFeesForNextPegOutEvent with one pegout request and with no enqueued requests', async () => {
121121
const estimatedFeesForNextPegOut = await getEstimatedFeesForNextPegOutEvent();
122122
expect(estimatedFeesForNextPegOut).to.be.greaterThan(0);
123123

@@ -133,11 +133,11 @@ const execute = (description) => {
133133
});
134134

135135
describe('getEstimatedFeesForPegOutAmount', () => {
136-
it('should allow constructing a second pegout request using the estimated fees from getEstimatedFeesForPegOutAmount and process both', async () => {
137-
const estimatedFeesForPegOut = Number(await getEstimatedFeesForPegOutAmount(MINIMUM_PEGOUT_AMOUNT_IN_SATOSHIS).call());
138-
expect(estimatedFeesForPegOut).to.be.greaterThan(0);
136+
it('should allow constructing a pegout request using the estimated fees from getEstimatedFeesForPegOutAmount with one pegout request and with no enqueued requests', async () => {
137+
const estimatedFeesForPegout = Number(await getEstimatedFeesForPegOutAmount(MINIMUM_PEGOUT_AMOUNT_IN_SATOSHIS).call());
138+
expect(estimatedFeesForPegout).to.be.greaterThan(0);
139139

140-
await sendPegoutWithEstimatedFees(estimatedFeesForPegOut);
140+
await sendPegoutWithEstimatedFees(estimatedFeesForPegout);
141141
await processReleaseRequestsAndAssertQueueCleared(TWO_PEGOUT_REQUESTS_EXPECTED);
142142

143143
const estimatedFeesForPegOutWithNoEnqueuedRequests = Number(await getEstimatedFeesForPegOutAmount(MINIMUM_PEGOUT_AMOUNT_IN_SATOSHIS).call());

0 commit comments

Comments
 (0)