Skip to content

Commit

Permalink
refactor: use &[T] instead of &Vec<T>
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjackwills committed Feb 14, 2024
1 parent d469d71 commit 1f62bb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app_data/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1384,7 +1384,7 @@ mod tests {
"Up 1 hour".to_owned(),
)
};
let mut app_data = gen_appdata(&vec![gen_item_state(state)]);
let mut app_data = gen_appdata(&[gen_item_state(state)]);
app_data.containers_start();
app_data.docker_controls_start();

Expand Down

0 comments on commit 1f62bb5

Please sign in to comment.