File tree Expand file tree Collapse file tree
src/test/java/org/apache/commons/compress/archivers/sevenz Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ();
You can’t perform that action at this time.
0 commit comments