diff --git a/std/algorithm/setops.d b/std/algorithm/setops.d index f4f13e160d1..0697130eb76 100644 --- a/std/algorithm/setops.d +++ b/std/algorithm/setops.d @@ -504,7 +504,7 @@ if (!allSatisfy!(isForwardRange, R1, R2, RR) || assert(canFind(N4, tuple(1, 2, 3, 4))); assert(canFind(N4, tuple(4, 3, 2, 1))); - assert(canFind(N4, tuple(10, 31, 7, 12))); + assert(canFind(N4, tuple(10, 3, 7, 2))); } // Issue 9878