Skip to content

Commit

Permalink
Update crates/ef-testing/tests/tests.rs
Browse files Browse the repository at this point in the history
Co-authored-by: ftupas <35031356+ftupas@users.noreply.github.com>
  • Loading branch information
greged93 and ftupas committed Sep 6, 2023
1 parent 158f091 commit efde29f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/ef-testing/tests/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use tracing_subscriber::{filter, FmtSubscriber};

static INIT: Once = Once::new();

fn set_up() {
fn setup() {
INIT.call_once(|| {
// Set-up tracing filter
let filter = filter::EnvFilter::new("tests=info,ef_testing=info,katana_core=info");
Expand Down Expand Up @@ -48,7 +48,7 @@ macro_rules! blockchain_tests {
($test_name:ident, $dir:ident) => {
#[tokio::test]
async fn $test_name() {
set_up();
setup();
BlockchainTestSuite::new(format!("GeneralStateTests/{}", stringify!($dir)))
.run()
.await;
Expand Down

0 comments on commit efde29f

Please sign in to comment.