Skip to content

Commit 176bc40

Browse files
committed
fixed wording assert
1 parent 4c77245 commit 176bc40

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/java/dev/zarr/zarrjava/store/OnlineS3StoreTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public void testReadSuffix() {
6565
StoreHandle storeHandle = storeHandleWithData();
6666
ByteBuffer fullBuffer = storeHandle.read();
6767
long size = fullBuffer.remaining();
68-
Assertions.assertsTrue(size >= 20, "Store size is too small to test suffix read");
68+
Assertions.assertTrue(size >= 20, "Store size is too small to test suffix read");
6969

7070
ByteBuffer suffixBuffer = storeHandle.read(-10);
7171
Assertions.assertEquals(10, suffixBuffer.remaining());

0 commit comments

Comments
 (0)