Skip to content

Commit 8648b95

Browse files
committed
minor cleanups
Signed-off-by: Atanas Atanasov <[email protected]>
1 parent 6cfa076 commit 8648b95

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

server/src/test/java/com/hedera/block/server/persistence/storage/path/BlockAsLocalFilePathResolverTest.java

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,6 @@ void setUp() throws IOException {
6161
assertThat(testConfigArchiveRootPath).isEqualTo(testArchiveRootPath);
6262
final Path testConfigUnverifiedRootPath = testConfig.unverifiedRootPath();
6363
assertThat(testConfigUnverifiedRootPath).isEqualTo(testUnverifiedRootPath);
64-
// final Path testConfigLiveRootPath = testConfig.liveRootPath();
65-
// assertThat(testConfigLiveRootPath).isEqualTo(testLiveRootPath);
66-
// final Path testConfigUnverifiedRootPath = testConfig.unverifiedRootPath();
67-
// assertThat(testConfigUnverifiedRootPath).isEqualTo(testLiveRootPath);
68-
// final int testConfigArchiveGroupSize = testConfig.archiveGroupSize();
69-
// assertThat(testConfigArchiveGroupSize).isEqualTo(10);
7064
toTest = new BlockAsLocalFilePathResolver(testConfig);
7165
}
7266

@@ -507,7 +501,7 @@ void testFalseExistsVerified(final long blockNumber, final String blockFile) {
507501
* @param blockNumber parameterized, valid block number
508502
*/
509503
@ParameterizedTest
510-
@MethodSource("validBlockNumbers") // todo remove this test
504+
@MethodSource("validBlockNumbers")
511505
void testFalseExistsUnverified(final long blockNumber, final String blockFile) throws IOException {
512506
final boolean notExistYet = toTest.existsVerifiedBlock(blockNumber);
513507
assertThat(notExistYet).isFalse();

0 commit comments

Comments
 (0)