You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Actual result: Version::new(1, 57, 0)
Expected result: Version::new(1, 56, 1)
The reason for this result is that the indices left == right which causes the algorithm to stop. In this case, we'd like to go one step further, since we want to go beyond an insertion point.
The text was updated successfully, but these errors were encountered:
289: Fix regression where last release was not tested when last in search space r=foresterre a=foresterre
Fixes#288
Co-authored-by: Martijn Gribnau <garm@ilumeo.com>
borsbot
added a commit
that referenced
this issue
Feb 2, 2022
289: Fix regression where last release was not tested when last in search space r=foresterre a=foresterre
Fixes#288
Co-authored-by: Martijn Gribnau <garm@ilumeo.com>
289: Fix regression where last release was not tested when last in search space r=foresterre a=foresterre
Fixes#288
Co-authored-by: Martijn Gribnau <garm@ilumeo.com>
Actual result:
Version::new(1, 57, 0)
Expected result:
Version::new(1, 56, 1)
The reason for this result is that the indices
left == right
which causes the algorithm to stop. In this case, we'd like to go one step further, since we want to go beyond an insertion point.The text was updated successfully, but these errors were encountered: