Skip to content

Commit

Permalink
add expects
Browse files Browse the repository at this point in the history
  • Loading branch information
brunopgalvao committed Mar 21, 2024
1 parent 02df00c commit 3ff57ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engines/parachain_engine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ mod tests {

#[test]
fn test_parachain_build_after_instantiating_template() -> Result<(), Error> {
let temp_dir = setup_template_and_instantiate()?;
let temp_dir = setup_template_and_instantiate().expect(msg!("Failed to setup template and instantiate"));
let build = build_parachain(&Some(temp_dir.path().to_path_buf()));
assert!(build.is_ok(), "Result should be Ok");
Ok(())
Expand Down

0 comments on commit 3ff57ed

Please sign in to comment.