File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
hiero-enterprise-base/src/test/java/com/openelements/hiero/base/test Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -59,9 +59,9 @@ void testCreateFileForSizeGreaterThanFileCreateMaxSize() throws HieroException {
5959 final FileCreateResult fileCreateResult = Mockito .mock (FileCreateResult .class );
6060
6161 // given
62- byte [] content = new byte [FileCreateRequest .FILE_CREATE_MAX_SIZE * 2 ];
62+ final byte [] content = new byte [FileCreateRequest .FILE_CREATE_MAX_SIZE * 2 ];
6363 // -1 because 1 for executeFileCreateTransaction()
64- int appendCount = Math .floorDiv (content .length , FileCreateRequest .FILE_CREATE_MAX_SIZE ) - 1 ;
64+ final int appendCount = Math .floorDiv (content .length , FileCreateRequest .FILE_CREATE_MAX_SIZE ) - 1 ;
6565
6666 //then
6767 when (protocolLayerClient .executeFileCreateTransaction (any (FileCreateRequest .class )))
You can’t perform that action at this time.
0 commit comments