@@ -66,7 +66,7 @@ pub async fn test_simple_approve(
6666 . call ( "nft_approve" )
6767 . args_json ( ( TOKEN_ID , alice. id ( ) , Option :: < String > :: None ) )
6868 . max_gas ( )
69- . deposit ( NearToken :: from_yoctonear ( 510000000000000000000 ) )
69+ . deposit ( NearToken :: from_yoctonear ( 550000000000000000000 ) )
7070 . transact ( )
7171 . await ?;
7272 assert ! ( res. is_success( ) ) ;
@@ -136,7 +136,7 @@ pub async fn test_simple_approve(
136136 Option :: < String > :: None ,
137137 ) )
138138 . max_gas ( )
139- . deposit ( NearToken :: from_yoctonear ( 510000000000000000000 ) )
139+ . deposit ( NearToken :: from_yoctonear ( 550000000000000000000 ) )
140140 . transact ( )
141141 . await ?;
142142 assert ! ( res. is_success( ) ) ;
@@ -177,7 +177,7 @@ pub async fn test_approval_with_call(
177177 Some ( "return-now" . to_string ( ) ) ,
178178 ) )
179179 . max_gas ( )
180- . deposit ( NearToken :: from_yoctonear ( 450000000000000000000 ) )
180+ . deposit ( NearToken :: from_yoctonear ( 550000000000000000000 ) )
181181 . transact ( )
182182 . await ?;
183183 assert_eq ! ( res. json:: <String >( ) ?, "cool" . to_string( ) ) ;
@@ -219,7 +219,7 @@ pub async fn test_approved_account_transfers_token(
219219 . call ( "nft_approve" )
220220 . args_json ( ( TOKEN_ID , alice. id ( ) , Option :: < String > :: None ) )
221221 . max_gas ( )
222- . deposit ( NearToken :: from_yoctonear ( 510000000000000000000 ) )
222+ . deposit ( NearToken :: from_yoctonear ( 550000000000000000000 ) )
223223 . transact ( )
224224 . await ?;
225225 assert ! ( res. is_success( ) ) ;
@@ -274,7 +274,7 @@ pub async fn test_revoke(
274274 . call ( "nft_approve" )
275275 . args_json ( ( TOKEN_ID , alice. id ( ) , Option :: < String > :: None ) )
276276 . max_gas ( )
277- . deposit ( NearToken :: from_yoctonear ( 510000000000000000000 ) )
277+ . deposit ( NearToken :: from_yoctonear ( 550000000000000000000 ) )
278278 . transact ( )
279279 . await ?;
280280 assert ! ( res. is_success( ) ) ;
@@ -288,7 +288,7 @@ pub async fn test_revoke(
288288 Option :: < String > :: None ,
289289 ) )
290290 . max_gas ( )
291- . deposit ( NearToken :: from_yoctonear ( 450000000000000000000 ) )
291+ . deposit ( NearToken :: from_yoctonear ( 550000000000000000000 ) )
292292 . transact ( )
293293 . await ?;
294294 assert ! ( res. is_success( ) ) ;
@@ -390,7 +390,7 @@ pub async fn test_revoke_all(
390390 . call ( "nft_approve" )
391391 . args_json ( ( TOKEN_ID , alice. id ( ) , Option :: < String > :: None ) )
392392 . max_gas ( )
393- . deposit ( NearToken :: from_yoctonear ( 510000000000000000000 ) )
393+ . deposit ( NearToken :: from_yoctonear ( 550000000000000000000 ) )
394394 . transact ( )
395395 . await ?;
396396 assert ! ( res. is_success( ) ) ;
@@ -404,7 +404,7 @@ pub async fn test_revoke_all(
404404 Option :: < String > :: None ,
405405 ) )
406406 . max_gas ( )
407- . deposit ( NearToken :: from_yoctonear ( 450000000000000000000 ) )
407+ . deposit ( NearToken :: from_yoctonear ( 550000000000000000000 ) )
408408 . transact ( )
409409 . await ?;
410410 assert ! ( res. is_success( ) ) ;
0 commit comments