Version 1.0.1
This commit is contained in:
parent
6e8d3c2cd6
commit
051f744831
2 changed files with 2 additions and 2 deletions
|
@ -35,7 +35,7 @@ public class ExecOperationBuild extends Project {
|
|||
public ExecOperationBuild() {
|
||||
pkg = "rife.bld.extension";
|
||||
name = "ExecOperation";
|
||||
version = version(1, 0, 1, "SNAPSHOT");
|
||||
version = version(1, 0, 1);
|
||||
|
||||
javaRelease = 17;
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ class ExecOperationTest {
|
|||
void testCommand() {
|
||||
var op = new ExecOperation().fromProject(new WebProject())
|
||||
.command(FOO, "bar");
|
||||
assertThat(op.command()).isEqualTo(List.of(FOO, "bar"));
|
||||
assertThat(op.command()).containsExactly(FOO, "bar");
|
||||
}
|
||||
|
||||
@Test
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue