Skip to content

Commit

Permalink
Update create_adr.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
omallassi committed Jan 22, 2025
1 parent c70d3b5 commit 1bece3d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion adr_core_local_impl/tests/create_adr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,8 @@ fn main() {
})
.after(|_feature, _rule, scenario, _ev, world| {

Check failure on line 232 in adr_core_local_impl/tests/create_adr.rs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

unused variable: `world`

Check failure on line 232 in adr_core_local_impl/tests/create_adr.rs

View workflow job for this annotation

GitHub Actions / build (macos-latest)

unused variable: `world`
Box::pin(async move {
let project_dirs: ProjectDirs = match ProjectDirs::from("murex", "adrust-tool", helper::get_workspace(&scenario.name).as_str()) {
let name = format!("{}-{}", scenario.name.clone(), scenario.position.line.clone());
let project_dirs: ProjectDirs = match ProjectDirs::from("murex", "adrust-tool", helper::get_workspace(&name).as_str()) {
None => panic!("issue while preparing test"),
Some(project_dirs) => project_dirs
};
Expand Down

0 comments on commit 1bece3d

Please sign in to comment.