Fix checkstyle in yang-model-export
[yangtools.git] / yang / yang-model-export / src / test / java / org / opendaylight / yangtools / yang / model / export / Bug5531Test.java
index cb1161dfa4aa32263a7bcc2dbff7e2ec9bbc699c..133ba33743464c7e5f25d3c80bdd2c0427f9b54d 100644 (file)
@@ -17,7 +17,6 @@ import java.io.ByteArrayOutputStream;
 import org.junit.Test;
 import org.opendaylight.yangtools.yang.model.api.Module;
 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
-import org.opendaylight.yangtools.yang.model.export.YinExportUtils;
 import org.opendaylight.yangtools.yang.test.util.YangParserTestUtils;
 
 public class Bug5531Test {
@@ -33,9 +32,9 @@ public class Bug5531Test {
         BufferedOutputStream bufferedOutputStream = new BufferedOutputStream(byteArrayOutputStream);
 
         // write small module of size less than 8kB
-       for (Module module : schema.getModules()) {
-           YinExportUtils.writeModuleToOutputStream(schema, module, bufferedOutputStream);
-       }
+        for (Module module : schema.getModules()) {
+            YinExportUtils.writeModuleToOutputStream(schema, module, bufferedOutputStream);
+        }
 
         String output = byteArrayOutputStream.toString();