diff --git a/src/test/java/FizzBuzzTest.java b/src/test/java/FizzBuzzTest.java index ed4f535c..9d2b42ce 100644 --- a/src/test/java/FizzBuzzTest.java +++ b/src/test/java/FizzBuzzTest.java @@ -45,7 +45,7 @@ public void tearDown() { * @param n int * @param s String * @throws IOException - */ + */ private void doFizzBuzz(final int n, final String s) throws IOException { final ByteArrayOutputStream baos = new ByteArrayOutputStream(); final BufferedOutputStream bos = new BufferedOutputStream(baos); @@ -60,7 +60,7 @@ private void doFizzBuzz(final int n, final String s) throws IOException { /** * @throws IOException * @return void - */ + */ @Test public void testFizzBuzz() throws IOException { this.doFizzBuzz(TestConstants.INT_1, TestConstants._1_);