From 0b6414f95b31086bd968dfe2cea841f6a14f9d04 Mon Sep 17 00:00:00 2001 From: Thoralf-M <46689931+Thoralf-M@users.noreply.github.com> Date: Mon, 28 Oct 2024 18:07:05 +0100 Subject: [PATCH] fix(iota): reenable test_start with correct assert (#3718) Co-authored-by: Thibault Martinez --- crates/iota/tests/cli_tests.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/iota/tests/cli_tests.rs b/crates/iota/tests/cli_tests.rs index 3967af50fc2..542054df012 100644 --- a/crates/iota/tests/cli_tests.rs +++ b/crates/iota/tests/cli_tests.rs @@ -135,7 +135,6 @@ async fn test_genesis() -> Result<(), anyhow::Error> { Ok(()) } -#[ignore = "https://github.com/iotaledger/iota/issues/2983"] #[sim_test] async fn test_start() -> Result<(), anyhow::Error> { let temp_dir = tempfile::tempdir()?; @@ -167,7 +166,7 @@ async fn test_start() -> Result<(), anyhow::Error> { let files = read_dir(working_dir)? .flat_map(|r| r.map(|file| file.file_name().to_str().unwrap().to_owned())) .collect::>(); - assert_eq!(12, files.len()); + assert_eq!(13, files.len()); assert!(files.contains(&IOTA_CLIENT_CONFIG.to_string())); assert!(files.contains(&IOTA_NETWORK_CONFIG.to_string())); assert!(files.contains(&IOTA_FULLNODE_CONFIG.to_string()));