File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
cardano-testnet/test/cardano-testnet-test/Cardano/Testnet/Test/LedgerEvents/Gov Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ hprop_check_predefined_abstain_drep = H.integrationWorkspace "test-activity" $ \
102
102
103
103
initialDesiredNumberOfPools <- getDesiredPoolNumberValue execConfig
104
104
105
- let newNumberOfDesiredPools = fromIntegral ( initialDesiredNumberOfPools + 1 )
105
+ let newNumberOfDesiredPools = initialDesiredNumberOfPools + 1
106
106
107
107
-- Do some proposal and vote yes with the first DRep only
108
108
-- and assert that proposal does NOT pass.
@@ -117,7 +117,7 @@ hprop_check_predefined_abstain_drep = H.integrationWorkspace "test-activity" $ \
117
117
118
118
-- Do some other proposal and vote yes with first DRep only
119
119
-- and assert the new proposal passes now.
120
- let newNumberOfDesiredPools2 = fromIntegral ( newNumberOfDesiredPools + 1 )
120
+ let newNumberOfDesiredPools2 = newNumberOfDesiredPools + 1
121
121
void $ desiredPoolNumberProposalTest execConfig epochStateView configurationFile socketPath ceo gov " secondProposal"
122
122
wallet0 Nothing [(1 , " yes" )] newNumberOfDesiredPools2 newNumberOfDesiredPools2 2
123
123
You can’t perform that action at this time.
0 commit comments