From 0cfd6a0b0fef308a32757d3a0304139a9f94c0ad Mon Sep 17 00:00:00 2001 From: Xabi Losada Date: Fri, 22 Nov 2024 15:43:31 +0700 Subject: [PATCH] fix: increase expected cost for deploying context contracts in Near --- contracts/context-config/tests/sandbox.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/context-config/tests/sandbox.rs b/contracts/context-config/tests/sandbox.rs index 612f10890..e57d9ea1d 100644 --- a/contracts/context-config/tests/sandbox.rs +++ b/contracts/context-config/tests/sandbox.rs @@ -1161,7 +1161,7 @@ async fn test_storage_usage_matches_code_size() -> eyre::Result<()> { let node1_balance = node1_balance_after; assert!( - diff < NearToken::from_millinear(10), + diff < NearToken::from_millinear(15), "Node1 balance should not be reduced by more than 10 milliNEAR, but was reduced by {}", diff );