Skip to content

Commit b022ce2

Browse files
committed
format
1 parent 59029fd commit b022ce2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/test/java/dev/zarr/zarrjava/ZarrTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -235,10 +235,10 @@ public void testWriteReadWithZarrita(String codec, String codecParam) throws Exc
235235

236236
static Stream<Function<CodecBuilder, CodecBuilder>> invalidCodecBuilder() {
237237
return Stream.of(
238-
c -> c.withBytes(BytesCodec.Endian.LITTLE).withBytes(BytesCodec.Endian.LITTLE),
239-
c -> c.withBlosc().withBytes(BytesCodec.Endian.LITTLE),
240-
c -> c.withBytes(BytesCodec.Endian.LITTLE).withTranspose(new int[]{1, 0}),
241-
c -> c.withTranspose(new int[]{1, 0}).withBytes(BytesCodec.Endian.LITTLE).withTranspose(new int[]{1, 0})
238+
c -> c.withBytes(BytesCodec.Endian.LITTLE).withBytes(BytesCodec.Endian.LITTLE),
239+
c -> c.withBlosc().withBytes(BytesCodec.Endian.LITTLE),
240+
c -> c.withBytes(BytesCodec.Endian.LITTLE).withTranspose(new int[]{1, 0}),
241+
c -> c.withTranspose(new int[]{1, 0}).withBytes(BytesCodec.Endian.LITTLE).withTranspose(new int[]{1, 0})
242242
);
243243
}
244244

0 commit comments

Comments
 (0)