@@ -358,7 +358,6 @@ async fn can_sign_schedule() -> anyhow::Result<()> {
358358}
359359
360360#[ tokio:: test]
361- #[ ignore]
362361async fn schedule_ahead_one_year_fail ( ) -> anyhow:: Result < ( ) > {
363362 let Some ( TestEnvironment { config, client } ) = setup_nonfree ( ) else {
364363 return Ok ( ( ) ) ;
@@ -396,7 +395,6 @@ async fn schedule_ahead_one_year_fail() -> anyhow::Result<()> {
396395}
397396
398397#[ tokio:: test]
399- #[ ignore]
400398async fn schedule_in_the_past_fail ( ) -> anyhow:: Result < ( ) > {
401399 let Some ( TestEnvironment { config, client } ) = setup_nonfree ( ) else {
402400 return Ok ( ( ) ) ;
@@ -434,7 +432,6 @@ async fn schedule_in_the_past_fail() -> anyhow::Result<()> {
434432}
435433
436434#[ tokio:: test]
437- #[ ignore]
438435async fn sign_schedule_and_wait_for_expiry ( ) -> anyhow:: Result < ( ) > {
439436 let Some ( TestEnvironment { config, client } ) = setup_nonfree ( ) else {
440437 return Ok ( ( ) ) ;
@@ -701,7 +698,6 @@ async fn sign_with_multi_sig() -> anyhow::Result<()> {
701698}
702699
703700#[ tokio:: test]
704- #[ ignore]
705701async fn execute_with_short_exp_time ( ) -> anyhow:: Result < ( ) > {
706702 let Some ( TestEnvironment { config, client } ) = setup_nonfree ( ) else {
707703 return Ok ( ( ) ) ;
@@ -760,7 +756,7 @@ async fn execute_with_short_exp_time() -> anyhow::Result<()> {
760756 let new_balance = AccountBalanceQuery :: new ( ) . account_id ( account. id ) . execute ( & client) . await ?;
761757
762758 // Verify the schedule is executed after 10 seconds
763- assert_eq ! ( initial_balance . hbars, new_balance . hbars + Hbar :: new( 1 ) ) ;
759+ assert_eq ! ( new_balance . hbars, initial_balance . hbars - Hbar :: new( 1 ) ) ;
764760
765761 Ok ( ( ) )
766762}
0 commit comments