Skip to content

Commit

Permalink
Fix incorrect mismatched constraints reference (#10184)
Browse files Browse the repository at this point in the history
  • Loading branch information
charliermarsh authored Dec 26, 2024
1 parent 351d602 commit d3f06de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/uv-resolver/src/lock/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -998,7 +998,7 @@ impl Lock {
.map(|requirement| normalize_requirement(requirement, root))
.collect::<Result<_, _>>()?;
if expected != actual {
return Ok(SatisfiesResult::MismatchedConstraints(expected, actual));
return Ok(SatisfiesResult::MismatchedRequirements(expected, actual));
}
}

Expand Down

0 comments on commit d3f06de

Please sign in to comment.