Skip to content

Commit a55f060

Browse files
committed
CC5: don't confirm second delete in CommitLogSegmentManagerCDCTest
1 parent af0921a commit a55f060

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/unit/org/apache/cassandra/db/commitlog/CommitLogSegmentManagerCDCTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ private void testSegmentFlaggingOnCreation0() throws Throwable
511511
// Clear out archived CDC files
512512
for (File f : DatabaseDescriptor.getCDCLogLocation().tryList()) {
513513
logger.debug("delete {}", f.absolutePath());
514-
FileUtils.deleteWithConfirm(f);
514+
FileUtils.delete(f);
515515
}
516516
});
517517
}

0 commit comments

Comments
 (0)