Skip to content

Commit

Permalink
update scenario tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dkijania committed Apr 7, 2021
1 parent ff6dda7 commit 91d6ffc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions testing/jormungandr-scenario-tests/src/node.rs
Expand Up @@ -767,12 +767,12 @@ impl<'a, R: RngCore, N> SpawnBuilder<'a, R, N> {
LogEntry {
format: format.to_string(),
level: level.to_string(),
output: LogOutput::Stderr,
output: LogOutput::File(log_file.to_path_buf()),
},
LogEntry {
format: format.to_string(),
level,
output: LogOutput::File(log_file.to_path_buf()),
level: level.to_string(),
output: LogOutput::Stderr,
},
]));
}
Expand Down

0 comments on commit 91d6ffc

Please sign in to comment.