(chore) fix typo

This commit is contained in:
Andreas Penski (init) 2020-03-23 13:35:15 +01:00
parent 982b8fd79f
commit d7f4a78fbc

View file

@ -21,7 +21,6 @@ package de.kosit.validationtool.cmd;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
import java.io.IOException;
import java.net.MalformedURLException; import java.net.MalformedURLException;
import org.junit.After; import org.junit.After;
@ -44,14 +43,14 @@ public class PrintReportActionTest {
private PrintReportAction action; private PrintReportAction action;
@Before @Before
public void setup() throws IOException { public void setup() {
this.commandLine = new CommandLine(); this.commandLine = new CommandLine();
this.commandLine.activate(); this.commandLine.activate();
this.action = new PrintReportAction(); this.action = new PrintReportAction();
} }
@After @After
public void tearDownd() throws IOException { public void tearDown() {
this.commandLine.deactivate(); this.commandLine.deactivate();
} }