Skip to content

Commit c263458

Browse files
committed
Fix test method names
1 parent cb3c340 commit c263458

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/test/java/org/apache/commons/compress/archivers/sevenz/SevenZFileTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ void testGetDefaultName() throws Exception {
538538
}
539539

540540
@Test
541-
void testGetEntriesOfUnarchiveInMemoryTest() throws IOException {
541+
void testGetEntriesOfUnarchiveInMemory() throws IOException {
542542
final byte[] data = readAllBytes("bla.7z");
543543
try (SevenZFile sevenZFile = SevenZFile.builder().setSeekableByteChannel(new SeekableInMemoryByteChannel(data)).get()) {
544544
final Iterable<SevenZArchiveEntry> entries = sevenZFile.getEntries();
@@ -552,7 +552,7 @@ void testGetEntriesOfUnarchiveInMemoryTest() throws IOException {
552552
}
553553

554554
@Test
555-
void testGetEntriesOfUnarchiveTest() throws IOException {
555+
void testGetEntriesOfUnarchive() throws IOException {
556556
try (SevenZFile sevenZFile = getSevenZFile("bla.7z")) {
557557
final Iterable<SevenZArchiveEntry> entries = sevenZFile.getEntries();
558558
final Iterator<SevenZArchiveEntry> iter = entries.iterator();

0 commit comments

Comments
 (0)