Skip to content

Commit

Permalink
spaces —> tabs for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Emily Curtin committed Mar 2, 2017
1 parent 2f92ef7 commit dfbdcd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/FizzBuzzTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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_);
Expand Down

0 comments on commit dfbdcd9

Please sign in to comment.