From 596aa7c279208cf18813162df04d66a30a69c69d Mon Sep 17 00:00:00 2001 From: Roman Khimov Date: Sun, 17 Sep 2023 22:22:46 +0300 Subject: [PATCH] integration: drop tick/wait kludge AIO was updated to solve this. Signed-off-by: Roman Khimov --- integration_test.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/integration_test.go b/integration_test.go index 185b970..123be8d 100644 --- a/integration_test.go +++ b/integration_test.go @@ -355,15 +355,6 @@ func createDockerContainer(ctx context.Context, t *testing.T, image string) test }) require.NoError(t, err) - // Have to wait this time. Required for new tick event processing. - // Should be removed after fix epochs in AIO start. - <-time.After(3 * time.Second) - - _, _, err = aioC.Exec(ctx, tickEpoch) - require.NoError(t, err) - - <-time.After(3 * time.Second) - return aioC }