mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-03 18:38:21 +00:00
Fix incorrect mismatched constraints reference (#10184)
This commit is contained in:
parent
351d602d86
commit
d3f06de4f5
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue