2
0
mirror of synced 2025-01-19 13:02:05 +00:00

21 lines
429 B
C#
Raw Normal View History

namespace CodexDistTests.TestCore
{
public static class Timing
{
public static TimeSpan HttpCallTimeout()
{
return TimeSpan.FromMinutes(10);
}
public static void RetryDelay()
{
Utils.Sleep(TimeSpan.FromSeconds(3));
}
public static void WaitForServiceDelay()
{
Utils.Sleep(TimeSpan.FromSeconds(1));
}
}
}