Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
paweljakubas committed Feb 22, 2024
1 parent c9230df commit 838cf34
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/integration/cardano-wallet-integration.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,6 @@ library scenarios
Test.Integration.Scenario.API.Byron.Network
Test.Integration.Scenario.API.Byron.Transactions
Test.Integration.Scenario.API.Byron.Wallets
Test.Integration.Scenario.API.Conway
Test.Integration.Scenario.API.Network
Test.Integration.Scenario.API.Shared.Addresses
Test.Integration.Scenario.API.Shared.Transactions
Expand All @@ -179,6 +178,7 @@ library scenarios
Test.Integration.Scenario.API.Shelley.Transactions
Test.Integration.Scenario.API.Shelley.TransactionsNew
Test.Integration.Scenario.API.Shelley.Wallets
Test.Integration.Scenario.API.Voting
Test.Integration.Scenario.CLI.Byron.Addresses
Test.Integration.Scenario.CLI.Byron.Wallets
Test.Integration.Scenario.CLI.Miscellaneous
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4352,8 +4352,8 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do
]

it "TRANS_NEW_CREATE_12 - Cannot vote in Babbage" $ \ctx -> runResourceT $ do
noConway ctx "voting supported in Conway onwards and tested in API.Conway module"
src <- fixtureWallet @n ctx
noConway ctx "voting supported in Conway onwards and tested in API.Voting module"
src <- fixtureWallet ctx

let voteNoConfidence = Json [json|{
"vote": "abstain"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ import Test.Integration.Framework.DSL
, getFromResponse
, getResponse
, json
, minUTxOValue
, noBabbage
, notDelegating
, onlyVoting
Expand All @@ -91,7 +90,7 @@ spec :: forall n. HasSNetworkId n => SpecWith Context
spec = describe "VOTING_TRANSACTIONS" $ do
it "VOTING_01a - Can vote and revote" $ \ctx -> runResourceT $ do
noBabbage ctx "voting supported in Conway onwards"
src <- fixtureWallet @n ctx
src <- fixtureWallet ctx

let getSrcWallet =
let endpoint = Link.getWallet @'Shelley src
Expand Down

0 comments on commit 838cf34

Please sign in to comment.