mirror of
https://github.com/google/nomulus.git
synced 2025-05-11 09:18:22 +02:00
Fix Kokoro build
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=167886615
This commit is contained in:
parent
f0621c4df1
commit
e892a2f0fe
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ public final class RequestStatusCheckerImplTest {
|
||||||
// it's a request that has just started running recently.
|
// it's a request that has just started running recently.
|
||||||
@Test public void testIsRunning_unrecognized() {
|
@Test public void testIsRunning_unrecognized() {
|
||||||
when(RequestStatusCheckerImpl.logService.fetch(expectedLogQuery("12345678")))
|
when(RequestStatusCheckerImpl.logService.fetch(expectedLogQuery("12345678")))
|
||||||
.thenReturn(ImmutableList.of());
|
.thenReturn(ImmutableList.<RequestLogs>of());
|
||||||
assertThat(requestStatusChecker.isRunning("12345678")).isTrue();
|
assertThat(requestStatusChecker.isRunning("12345678")).isTrue();
|
||||||
assertAboutLogs()
|
assertAboutLogs()
|
||||||
.that(logHandler)
|
.that(logHandler)
|
||||||
|
|
Loading…
Add table
Reference in a new issue