Version 1.0.1

This commit is contained in:
Erik C. Thauvin 2024-06-21 12:07:19 -07:00
parent 6e8d3c2cd6
commit 051f744831
Signed by: erik
GPG key ID: 776702A6A2DA330E
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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