Merge pull request #3706 from tonistiigi/windows-test-timings-bump

store: increase test timeouts for CI reliability
This commit is contained in:
CrazyMax
2026-03-09 11:51:07 +01:00
committed by GitHub
+2 -2
View File
@@ -51,14 +51,14 @@ func TestNodeLocking(t *testing.T) {
}()
select {
case <-time.After(100 * time.Millisecond):
case <-time.After(200 * time.Millisecond):
case <-ready:
require.Fail(t, "transaction should have waited")
}
release()
select {
case <-time.After(200 * time.Millisecond):
case <-time.After(5 * time.Second):
require.Fail(t, "transaction should have completed")
case <-ready:
}