From c1e0c196f2d2d88c7af921968ad7d41c8d735e94 Mon Sep 17 00:00:00 2001 From: Hernando Castano Date: Thu, 19 Oct 2023 16:15:16 -0400 Subject: [PATCH] =?UTF-8?q?Apply=20same=20sleep=20hack=20as=20in=20#433=20?= =?UTF-8?q?=F0=9F=99=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- crypto/server/src/user/tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/server/src/user/tests.rs b/crypto/server/src/user/tests.rs index d45a1da60..19a3289d9 100644 --- a/crypto/server/src/user/tests.rs +++ b/crypto/server/src/user/tests.rs @@ -461,7 +461,7 @@ async fn test_store_share() { let alice_account_id: ::AccountId = alice.to_account_id().into(); let registered_query = entropy::storage().relayer().registered(alice_account_id); for _ in 0..10 { - std::thread::sleep(std::time::Duration::from_millis(500)); + std::thread::sleep(std::time::Duration::from_millis(1000)); let query_registered_status = api.storage().at_latest().await.unwrap().fetch(®istered_query).await; if query_registered_status.unwrap().is_some() {