Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: increasing timeout in testServerStreamingStart #2308

Merged
merged 1 commit into from
Dec 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -200,9 +200,9 @@ public void testServerStreamingStart() throws InterruptedException {

Truth.assertThat(moneyObserver.controller).isNotNull();
// wait for the task to complete, otherwise it may interfere with other tests, since they share
// the same MockService and unfinished request in this tes may start readind messages designated
// for other tests.
Truth.assertThat(latch.await(2, TimeUnit.SECONDS)).isTrue();
// the same MockService and unfinished request in this test may start reading messages
// designated for other tests.
Truth.assertThat(latch.await(60, TimeUnit.SECONDS)).isTrue();
}

@Test
Expand Down
Loading