Skip to content

Commit

Permalink
Removed useless iter
Browse files Browse the repository at this point in the history
  • Loading branch information
Razz4780 committed Jan 31, 2025
1 parent 90f65b8 commit 69f3aa4
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/src/operator/sanity.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,7 @@ pub async fn mirrord_ls(#[future] service_for_mirrord_ls: KubeService) {

let re = Regex::new(&format!(
r"^({})/.+(/container/.+)?$",
expected_target_types
.into_iter()
.collect::<Vec<_>>()
.join("|")
expected_target_types.join("|")
))
.unwrap();
targets.iter().for_each(|output| {
Expand Down

0 comments on commit 69f3aa4

Please sign in to comment.