@@ -154,17 +154,20 @@ public void testOpenContainerIntegrity() throws Exception {
154154 Assert .assertTrue (cs .containerCount () > 0 );
155155
156156 // delete the chunks directory.
157- File chunksDir = new File (c .getContainerData ().getContainerPath (), "chunks" );
157+ File chunksDir = new File (c .getContainerData ().getContainerPath (),
158+ "chunks" );
158159 deleteDirectory (chunksDir );
159160 Assert .assertFalse (chunksDir .exists ());
160161
161- ContainerScrubber sb = new ContainerScrubber (ozoneConfig , oc .getController ());
162+ ContainerScrubber sb = new ContainerScrubber (ozoneConfig ,
163+ oc .getController ());
162164 sb .scrub (c );
163165
164166 // wait for the incremental container report to propagate to SCM
165167 Thread .sleep (5000 );
166168
167- ContainerManager cm = cluster .getStorageContainerManager ().getContainerManager ();
169+ ContainerManager cm = cluster .getStorageContainerManager ()
170+ .getContainerManager ();
168171 Set <ContainerReplica > replicas = cm .getContainerReplicas (
169172 ContainerID .valueof (c .getContainerData ().getContainerID ()));
170173 Assert .assertEquals (1 , replicas .size ());
@@ -184,7 +187,8 @@ boolean deleteDirectory(File directoryToBeDeleted) {
184187 }
185188
186189 private boolean verifyRatisReplication (String volumeName , String bucketName ,
187- String keyName , ReplicationType type , ReplicationFactor factor )
190+ String keyName , ReplicationType type ,
191+ ReplicationFactor factor )
188192 throws IOException {
189193 OmKeyArgs keyArgs = new OmKeyArgs .Builder ()
190194 .setVolumeName (volumeName )
0 commit comments