From f9cc5ff750f0fec82089cd889ff6d5343039a5eb Mon Sep 17 00:00:00 2001 From: Fabian Seidl <fabian.seidl@h-da.de> Date: Wed, 10 Jan 2024 12:16:51 +0100 Subject: [PATCH] remove initial queue cleaning to check if ci doesn't block anymore --- integration-tests/application_tests/application_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration-tests/application_tests/application_test.go b/integration-tests/application_tests/application_test.go index 1a66fe01f..bb5dea99d 100644 --- a/integration-tests/application_tests/application_test.go +++ b/integration-tests/application_tests/application_test.go @@ -96,8 +96,8 @@ func TestMain(m *testing.M) { // Important note: only works once after starting the setup, because first time use creates // a user and updates it because of the login. After then only logins are done, no user creations. // This means that this will block after trying once, because the two attempts to read from eventChannel. - _ = <-application.eventChannel - _ = <-application.eventChannel + // _ = <-application.eventChannel + // _ = <-application.eventChannel m.Run() } -- GitLab