Skip to content

Commit

Permalink
puffin-cli: fix botched merge (#785)
Browse files Browse the repository at this point in the history
This fixes a compilation error with tests on current `main`. I didn't
track down the exact provenance, but I'd guess it's the result of a
botched merge. (i.e., Two or more PRs that pass CI independently, but
when merged cause failures.)
  • Loading branch information
BurntSushi authored Jan 4, 2024
1 parent c6bdc43 commit 1cc3250
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/puffin-cli/tests/pip_install.rs
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ fn install_editable() -> Result<()> {

let filters = iter::once((workspace_dir.to_str().unwrap(), "[WORKSPACE_DIR]"))
.chain(INSTA_FILTERS.to_vec())
.collect();
.collect::<Vec<_>>();

// Install the editable package.
insta::with_settings!({
Expand Down

0 comments on commit 1cc3250

Please sign in to comment.