Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
dkijania committed May 10, 2021
1 parent dad9ff5 commit 914c482
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 6 deletions.
Expand Up @@ -96,7 +96,11 @@ pub fn test_mempool_pool_max_entries_equal_0() {
})
.build(&temp_dir);

let jormungandr = Starter::new().config(config.clone()).temp_dir(temp_dir).start().unwrap();
let jormungandr = Starter::new()
.config(config.clone())
.temp_dir(temp_dir)
.start()
.unwrap();

let verifier = jormungandr
.correct_state_verifier()
Expand Down Expand Up @@ -148,7 +152,11 @@ pub fn test_mempool_log_max_entries_only_one_fragment() {
})
.build(&temp_dir);

let jormungandr = Starter::new().config(config.clone()).temp_dir(temp_dir).start().unwrap();
let jormungandr = Starter::new()
.config(config.clone())
.temp_dir(temp_dir)
.start()
.unwrap();

let verifier = jormungandr
.correct_state_verifier()
Expand Down Expand Up @@ -206,7 +214,11 @@ pub fn test_mempool_log_max_entries_equals_0() {
})
.build(&temp_dir);

let jormungandr = Starter::new().config(config.clone()).temp_dir(temp_dir).start().unwrap();
let jormungandr = Starter::new()
.config(config.clone())
.temp_dir(temp_dir)
.start()
.unwrap();

let verifier = jormungandr
.correct_state_verifier()
Expand Down
Expand Up @@ -112,7 +112,11 @@ pub fn test_mempool_pool_max_entries_equal_0() {
})
.build(&temp_dir);

let jormungandr = Starter::new().config(config.clone()).temp_dir(temp_dir).start().unwrap();
let jormungandr = Starter::new()
.config(config.clone())
.temp_dir(temp_dir)
.start()
.unwrap();

let verifier = jormungandr
.correct_state_verifier()
Expand Down Expand Up @@ -180,7 +184,11 @@ pub fn test_mempool_log_max_entries_only_one_fragment() {
})
.build(&temp_dir);

let jormungandr = Starter::new().config(config.clone()).temp_dir(temp_dir).start().unwrap();
let jormungandr = Starter::new()
.config(config.clone())
.temp_dir(temp_dir)
.start()
.unwrap();

let verifier = jormungandr
.correct_state_verifier()
Expand Down Expand Up @@ -254,7 +262,11 @@ pub fn test_mempool_log_max_entries_equals_0() {
})
.build(&temp_dir);

let jormungandr = Starter::new().config(config.clone()).temp_dir(temp_dir).start().unwrap();
let jormungandr = Starter::new()
.config(config.clone())
.temp_dir(temp_dir)
.start()
.unwrap();

let verifier = jormungandr
.correct_state_verifier()
Expand Down

0 comments on commit 914c482

Please sign in to comment.