Skip to content

Commit 4097f35

Browse files
authored
Merge pull request #27 from DarwisNarvaezDev/RSE-852-fix-tests
Failed Tests Fix for RSE-852
2 parents b88fdd4 + a106e13 commit 4097f35

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

src/test/java/edu/ohio/ais/rundeck/HttpWorkflowNodeStepPluginTest.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -110,13 +110,6 @@ private static String readFileAsString(String filePath) throws IOException {
110110
@Rule
111111
public WireMockRule wireMockRule = new WireMockRule(18089);
112112

113-
@After
114-
public void tearDown(){
115-
if( Files.exists(this.testResource.toPath()) ){
116-
FileUtils.delete(this.testResource);
117-
}
118-
}
119-
120113
@Before
121114
public void setUp() {
122115
plugin = new HttpWorkflowNodeStepPlugin();
@@ -188,6 +181,13 @@ public void setUp() {
188181

189182
}
190183

184+
@After
185+
public void tearDown(){
186+
if( Files.exists(this.testResource.toPath()) ){
187+
FileUtils.delete(this.testResource);
188+
}
189+
}
190+
191191
@Test()
192192
public void canGetPluginDescription() {
193193
Description description = this.plugin.getDescription();

src/test/resources/README.md

Whitespace-only changes.

0 commit comments

Comments
 (0)