File tree Expand file tree Collapse file tree 9 files changed +2
-10
lines changed Expand file tree Collapse file tree 9 files changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -122,7 +122,6 @@ async fn query_cost_small_max_fails() -> anyhow::Result<()> {
122122}
123123
124124#[ tokio:: test]
125- #[ ignore]
126125async fn get_cost_insufficient_tx_fee_fails ( ) -> anyhow:: Result < ( ) > {
127126 let Some ( TestEnvironment { config, client } ) = setup_nonfree ( ) else {
128127 return Ok ( ( ) ) ;
Original file line number Diff line number Diff line change @@ -173,7 +173,6 @@ async fn query_cost_small_max_fails() -> anyhow::Result<()> {
173173}
174174
175175#[ tokio:: test]
176- #[ ignore]
177176async fn query_cost_insufficient_tx_fee_fails ( ) -> anyhow:: Result < ( ) > {
178177 let Some ( TestEnvironment { config, client } ) = setup_nonfree ( ) else {
179178 return Ok ( ( ) ) ;
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ async fn create_contract(
110110 }
111111
112112 let contract_id = tx
113- . gas ( 200_000 )
113+ . gas ( 300_000 )
114114 . constructor_parameters (
115115 ContractFunctionParameters :: new ( ) . add_string ( "Hello from Hedera." ) . to_bytes ( None ) ,
116116 )
Original file line number Diff line number Diff line change @@ -190,7 +190,6 @@ async fn query_cost_small_max_fails() -> anyhow::Result<()> {
190190}
191191
192192#[ tokio:: test]
193- #[ ignore]
194193async fn query_insufficient_tx_fee_fails ( ) -> anyhow:: Result < ( ) > {
195194 let Some ( TestEnvironment { config, client } ) = setup_nonfree ( ) else {
196195 return Ok ( ( ) ) ;
Original file line number Diff line number Diff line change @@ -85,7 +85,6 @@ async fn query_cost_small_max_fails() -> anyhow::Result<()> {
8585}
8686
8787#[ tokio:: test]
88- #[ ignore]
8988async fn get_cost_insufficient_tx_fee_fails ( ) -> anyhow:: Result < ( ) > {
9089 let Some ( TestEnvironment { config : _, client } ) = setup_nonfree ( ) else {
9190 return Ok ( ( ) ) ;
Original file line number Diff line number Diff line change @@ -701,7 +701,6 @@ async fn sign_with_multi_sig() -> anyhow::Result<()> {
701701}
702702
703703#[ tokio:: test]
704- #[ ignore]
705704async fn execute_with_short_exp_time ( ) -> anyhow:: Result < ( ) > {
706705 let Some ( TestEnvironment { config, client } ) = setup_nonfree ( ) else {
707706 return Ok ( ( ) ) ;
@@ -760,7 +759,7 @@ async fn execute_with_short_exp_time() -> anyhow::Result<()> {
760759 let new_balance = AccountBalanceQuery :: new ( ) . account_id ( account. id ) . execute ( & client) . await ?;
761760
762761 // Verify the schedule is executed after 10 seconds
763- assert_eq ! ( initial_balance. hbars, new_balance. hbars + Hbar :: new( 1 ) ) ;
762+ assert_eq ! ( initial_balance. hbars, new_balance. hbars - Hbar :: new( 1 ) ) ;
764763
765764 Ok ( ( ) )
766765}
Original file line number Diff line number Diff line change @@ -223,7 +223,6 @@ async fn query_cost_small_max_fails() -> anyhow::Result<()> {
223223}
224224
225225#[ tokio:: test]
226- #[ ignore]
227226async fn query_cost_insufficient_tx_fee_fails ( ) -> anyhow:: Result < ( ) > {
228227 let Some ( TestEnvironment { config, client } ) = setup_nonfree ( ) else {
229228 return Ok ( ( ) ) ;
Original file line number Diff line number Diff line change @@ -271,7 +271,6 @@ async fn query_cost_small_max_fails() -> anyhow::Result<()> {
271271}
272272
273273#[ tokio:: test]
274- #[ ignore]
275274async fn query_cost_insufficient_tx_fee_fails ( ) -> anyhow:: Result < ( ) > {
276275 let Some ( TestEnvironment { config : _, client } ) = setup_nonfree ( ) else {
277276 return Ok ( ( ) ) ;
Original file line number Diff line number Diff line change @@ -106,7 +106,6 @@ async fn query_cost_small_max() -> anyhow::Result<()> {
106106}
107107
108108#[ tokio:: test]
109- #[ ignore]
110109async fn query_cost_insufficient_tx_fee ( ) -> anyhow:: Result < ( ) > {
111110 let Some ( TestEnvironment { config : _, client } ) = setup_nonfree ( ) else {
112111 return Ok ( ( ) ) ;
You can’t perform that action at this time.
0 commit comments