20
20
package org .openmicroscopy .ms .zarr ;
21
21
22
22
import org .openmicroscopy .ms .zarr .mask .ImageMask ;
23
+ import static org .openmicroscopy .ms .zarr .RequestHandlerForImage .DEFAULT_LABEL_NAME ;
23
24
24
25
import ome .model .core .Image ;
25
26
import ome .model .core .Pixels ;
@@ -178,7 +179,7 @@ public void testMaskChunks() throws DataFormatException, IOException {
178
179
@ Test
179
180
public void testLabeledMaskChunks () throws DataFormatException , IOException {
180
181
final Set <Long > seenLabels = new HashSet <>();
181
- final JsonObject response = getResponseAsJson (image .getId (), "masks" , "labeled" , ".zarray" );
182
+ final JsonObject response = getResponseAsJson (image .getId (), "masks" , DEFAULT_LABEL_NAME , ".zarray" );
182
183
final JsonArray shape = response .getJsonArray ("shape" );
183
184
final int maskSizeX = shape .getInteger (4 );
184
185
final int maskSizeY = shape .getInteger (3 );
@@ -192,7 +193,7 @@ public void testLabeledMaskChunks() throws DataFormatException, IOException {
192
193
int chunkIndexX = 0 ;
193
194
for (int x = 0 ; x < maskSizeX ; x += chunkSizeX ) {
194
195
mockSetup ();
195
- final byte [] chunkZipped = getResponseAsBytes (image .getId (), "masks" , "labeled" , 0 , 0 , 0 , chunkIndexY , chunkIndexX );
196
+ final byte [] chunkZipped = getResponseAsBytes (image .getId (), "masks" , DEFAULT_LABEL_NAME , 0 , 0 , 0 , chunkIndexY , chunkIndexX );
196
197
final ByteBuffer chunk = ByteBuffer .wrap (uncompress (chunkZipped ));
197
198
for (int cx = 0 ; cx < chunkSizeX ; cx ++) {
198
199
for (int cy = 0 ; cy < chunkSizeY ; cy ++) {
0 commit comments