Skip to content

Commit

Permalink
Address PR comments
Browse files Browse the repository at this point in the history
Signed-off-by: Sachin Kale <kalsac@amazon.com>
  • Loading branch information
Sachin Kale committed Mar 28, 2024
1 parent 7189b2b commit 02dae46
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1711,7 +1711,7 @@ public void testDownloadWithRetries() throws IOException {
}

// No translog data in local as well as remote, we skip creating empty translog
public void testDownloadWithNoTranlogInLocalAndRemote() throws IOException {
public void testDownloadWithNoTranslogInLocalAndRemote() throws IOException {
Path location = createTempDir();

TranslogTransferManager mockTransfer = mock(TranslogTransferManager.class);
Expand All @@ -1726,7 +1726,7 @@ public void testDownloadWithNoTranlogInLocalAndRemote() throws IOException {

// No translog data in remote but non-empty translog is present in local. In this case, we delete all the files
// from local file system and create empty translog
public void testDownloadWithTranlogOnlyInLocal() throws IOException {
public void testDownloadWithTranslogOnlyInLocal() throws IOException {
TranslogTransferManager mockTransfer = mock(TranslogTransferManager.class);
RemoteTranslogTransferTracker remoteTranslogTransferTracker = mock(RemoteTranslogTransferTracker.class);
when(mockTransfer.readMetadata()).thenReturn(null);
Expand Down Expand Up @@ -1762,7 +1762,7 @@ public void testDownloadWithTranlogOnlyInLocal() throws IOException {
}

// No translog data in remote and empty translog in local. We skip creating another empty translog
public void testDownloadWithEmptyTranlogOnlyInLocal() throws IOException {
public void testDownloadWithEmptyTranslogOnlyInLocal() throws IOException {
TranslogTransferManager mockTransfer = mock(TranslogTransferManager.class);
RemoteTranslogTransferTracker remoteTranslogTransferTracker = mock(RemoteTranslogTransferTracker.class);
when(mockTransfer.readMetadata()).thenReturn(null);
Expand Down

0 comments on commit 02dae46

Please sign in to comment.