Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expect no_utxos_available instead of not_enough_money. #4374

Merged
merged 1 commit into from
Dec 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/e2e/spec/e2e_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2877,7 +2877,7 @@ def script_hash
pools = SHELLEY.stake_pools
fees = pools.delegation_fees(id)
expect(fees).to be_correct_and_respond 403
expect(fees.to_s).to include 'not_enough_money'
expect(fees.to_s).to include 'no_utxos_available'
end

it 'I could join Stake Pool - if I had enough to cover fee' do
Expand All @@ -2887,7 +2887,7 @@ def script_hash

join = pools.join(pool_id, id, PASS)
expect(join).to be_correct_and_respond 403
expect(join.to_s).to include 'not_enough_money'
expect(join.to_s).to include 'no_utxos_available'
end

it 'Can list stake pools only when stake is provided' do
Expand Down
Loading