Remove sleep
This commit is contained in:
parent
3e245f16c0
commit
1a5bf0c689
|
@ -17,8 +17,6 @@ use std::io::Read;
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
use std::sync::mpsc::channel;
|
use std::sync::mpsc::channel;
|
||||||
use std::sync::{Arc, RwLock};
|
use std::sync::{Arc, RwLock};
|
||||||
use std::thread::sleep;
|
|
||||||
use std::time::Duration;
|
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_wallet_deploy_program() {
|
fn test_wallet_deploy_program() {
|
||||||
|
@ -58,7 +56,6 @@ fn test_wallet_deploy_program() {
|
||||||
false,
|
false,
|
||||||
None,
|
None,
|
||||||
);
|
);
|
||||||
sleep(Duration::from_millis(900));
|
|
||||||
|
|
||||||
let (sender, receiver) = channel();
|
let (sender, receiver) = channel();
|
||||||
run_local_drone(alice.keypair(), sender);
|
run_local_drone(alice.keypair(), sender);
|
||||||
|
|
Loading…
Reference in New Issue