From eb0ffd9d1f790b6549eb6c6e8574dfd9f2bc822f Mon Sep 17 00:00:00 2001 From: Mathis Beer Date: Thu, 15 Mar 2018 16:40:03 +0100 Subject: [PATCH] Reduce size of slow testcase in std.algorithm.setops --- std/algorithm/setops.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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