mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-16 18:17:15 +02:00
14 lines
598 B
Diff
14 lines
598 B
Diff
diff --git a/tests/run/cpp_condition_variables.pyx b/tests/run/cpp_condition_variables.pyx
|
|
index 0992d3874..f920a11bf 100644
|
|
--- a/tests/run/cpp_condition_variables.pyx
|
|
+++ b/tests/run/cpp_condition_variables.pyx
|
|
@@ -22,7 +22,7 @@ cdef extern from *:
|
|
"""
|
|
namespace {
|
|
std::chrono::time_point<std::chrono::steady_clock> get_time_point() {
|
|
- return std::chrono::time_point<std::chrono::steady_clock>::max();
|
|
+ return std::chrono::steady_clock::now() + std::chrono::milliseconds(50000);
|
|
}
|
|
|
|
using time_point_type = decltype(get_time_point());
|