Skip to content

Commit

Permalink
fix: replace ' ' with '_' in generated test names
Browse files Browse the repository at this point in the history
  • Loading branch information
enitrat committed Sep 18, 2024
1 parent 3bcbe27 commit 6f1e15c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions crates/build-utils/src/converter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@ impl<'a> EfTests<'a> {
.replace('[', "__")
.replace(']', "")
.replace('-', "_minus_")
.replace(" ", "_")
.split(',')
.map(|part| part.trim())
.collect::<Vec<_>>()
Expand Down

0 comments on commit 6f1e15c

Please sign in to comment.