File 7315-ct-Fix-Quickcheck-compatibility.patch of Package erlang
From 3d7097200f08b29224de481c60b164a72f192ef7 Mon Sep 17 00:00:00 2001
From: Dan Gudmundsson <dgud@erlang.org>
Date: Tue, 3 Mar 2026 09:50:06 +0100
Subject: [PATCH 5/6] ct: Fix Quickcheck compatibility
---
lib/common_test/test/property_test/ct_prop.erl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/common_test/test/property_test/ct_prop.erl b/lib/common_test/test/property_test/ct_prop.erl
index 8f1cac622f..c1f7a5231a 100644
--- a/lib/common_test/test/property_test/ct_prop.erl
+++ b/lib/common_test/test/property_test/ct_prop.erl
@@ -26,7 +26,7 @@
-include_lib("common_test/include/ct_property_test.hrl").
prop_sort() ->
- ?FORALL(UnSorted, list(),
+ ?FORALL(UnSorted, list(?CT_SAFE_ANY()),
is_sorted(lists:sort(UnSorted))
).
--
2.51.0