Skip to content

Commit

Permalink
Update rskj-core/src/test/java/co/rsk/core/types/bytes/BytesSliceTest…
Browse files Browse the repository at this point in the history
….java

Co-authored-by: Nazaret García Revetria <[email protected]>
  • Loading branch information
2 people authored and Vovchyk committed Oct 4, 2024
1 parent b8fdf84 commit 39f9c56
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
class BytesSliceTest {

@Test
void testBytesLength() {
void testBytesLength() {
assertEquals(0, Bytes.of(new byte[]{}).slice(0, 0).length());
assertEquals(0, Bytes.of(new byte[]{1}).slice(0, 0).length());
assertEquals(1, Bytes.of(new byte[]{1}).slice(0, 1).length());
Expand Down

0 comments on commit 39f9c56

Please sign in to comment.