From d7ceacf162b1e32c6429624592d617e2593c3ca9 Mon Sep 17 00:00:00 2001 From: Manikumar Reddy Date: Tue, 12 Nov 2019 02:05:55 +0530 Subject: [PATCH] HOTFIX: Fix compilation error in DelayedFetchTest --- .../test/scala/integration/kafka/server/DelayedFetchTest.scala | 1 - 1 file changed, 1 deletion(-) diff --git a/core/src/test/scala/integration/kafka/server/DelayedFetchTest.scala b/core/src/test/scala/integration/kafka/server/DelayedFetchTest.scala index 806916f280e13..8eb23f3265876 100644 --- a/core/src/test/scala/integration/kafka/server/DelayedFetchTest.scala +++ b/core/src/test/scala/integration/kafka/server/DelayedFetchTest.scala @@ -111,7 +111,6 @@ class DelayedFetchTest extends EasyMockSupport { EasyMock.expect(replicaManager.getPartitionOrException(topicPartition, expectLeader = true)) .andThrow(new ReplicaNotAvailableException(s"Replica for $topicPartition not available")) expectReadFromReplicaWithError(replicaId, topicPartition, fetchStatus.fetchInfo, Errors.REPLICA_NOT_AVAILABLE) - EasyMock.expect(replicaManager.isAddingReplica(EasyMock.anyObject(), EasyMock.anyInt())).andReturn(false) replayAll()