fixes #16976 - fix ContainerLogWatch flaky test (#17206)

Signed-off-by: Michal Vala <mvala@redhat.com>
7.20.x
Michal Vala 2020-06-22 13:55:45 +02:00 committed by GitHub
parent c69ea7a73a
commit 2525ced3df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ public class ContainerLogWatchTest {
// verify events were properly fired
verify(eventsPublisher, times(1)).sendWatchLogStartedEvent(any(String.class));
verify(eventsPublisher, times(1)).sendWatchLogStoppedEvent(any(String.class));
verify(eventsPublisher, timeout(1000).times(1)).sendWatchLogStoppedEvent(any(String.class));
}
@Test