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
fmacleal and nagarev committed Oct 14, 2024
1 parent c48edca commit fa2eb47
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 fa2eb47

Please sign in to comment.