From d7f4a78fbc3de87e8518c07f7636e5d8bd1f4290 Mon Sep 17 00:00:00 2001 From: "Andreas Penski (init)" Date: Mon, 23 Mar 2020 13:35:15 +0100 Subject: [PATCH] (chore) fix typo --- .../de/kosit/validationtool/cmd/PrintReportActionTest.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/test/java/de/kosit/validationtool/cmd/PrintReportActionTest.java b/src/test/java/de/kosit/validationtool/cmd/PrintReportActionTest.java index 2235236..e1b16f4 100644 --- a/src/test/java/de/kosit/validationtool/cmd/PrintReportActionTest.java +++ b/src/test/java/de/kosit/validationtool/cmd/PrintReportActionTest.java @@ -21,7 +21,6 @@ package de.kosit.validationtool.cmd; import static org.assertj.core.api.Assertions.assertThat; -import java.io.IOException; import java.net.MalformedURLException; import org.junit.After; @@ -44,14 +43,14 @@ public class PrintReportActionTest { private PrintReportAction action; @Before - public void setup() throws IOException { + public void setup() { this.commandLine = new CommandLine(); this.commandLine.activate(); this.action = new PrintReportAction(); } @After - public void tearDownd() throws IOException { + public void tearDown() { this.commandLine.deactivate(); }