Fix up incorrect indentation/line-wrap

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/fileupload/trunk@1459110 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/test/java/org/apache/commons/fileupload/util/mime/QuotedPrintableDecoderTestCase.java b/src/test/java/org/apache/commons/fileupload/util/mime/QuotedPrintableDecoderTestCase.java
index 83d8699..872eedf 100644
--- a/src/test/java/org/apache/commons/fileupload/util/mime/QuotedPrintableDecoderTestCase.java
+++ b/src/test/java/org/apache/commons/fileupload/util/mime/QuotedPrintableDecoderTestCase.java
@@ -40,7 +40,7 @@
 
     @Test
     public void plainDecode() throws Exception {
-        // spaces are allowed in encoded data 
+        // spaces are allowed in encoded data
         // There are special rules for trailing spaces; these are not currently implemented.
         assertEncoded("The quick brown fox jumps over the lazy dog.", "The quick brown fox jumps over the lazy dog.");
     }
@@ -116,8 +116,8 @@
             fail("Expected IOException");
         } catch (IOException e) {
             String em = e.getMessage();
-            assertTrue("Expected to find " + messageText + " in '" + em + "'",em.contains(messageText));        }
-
+            assertTrue("Expected to find " + messageText + " in '" + em + "'",em.contains(messageText));
+        }
     }
 
 }