Skip to content

Commit 00c17e7

Browse files
committed
#ver 0.4.0
1 parent cb8b7a0 commit 00c17e7

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/test/java/org/scm4j/deployer/installers/CopyTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
import static org.junit.Assert.assertEquals;
1616
import static org.junit.Assert.assertTrue;
17+
import static org.scm4j.deployer.api.DeploymentResult.NEED_REBOOT;
1718

1819
public class CopyTest {
1920

@@ -87,7 +88,7 @@ public void testFail() throws Exception {
8788
FileUtils.forceDelete(file);
8889
}
8990
DeploymentResult res = copy.deploy();
90-
assertEquals(DeploymentResult.NEED_REBOOT, res);
91+
assertEquals(NEED_REBOOT, res);
9192

9293
setUp();
9394
}
@@ -107,4 +108,5 @@ public void testInitSetPath() {
107108
copy.init(depCtx);
108109
assertEquals(new File(OUTPUT_FOLDER, "hello"), copy.getOutputFile());
109110
}
111+
110112
}

version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.3.0
1+
0.4.0

0 commit comments

Comments
 (0)