fix CommandTest issues

This commit is contained in:
dfsek
2021-03-16 11:06:58 -07:00
parent 7f11373f75
commit 5458564cfa

View File

@@ -93,7 +93,7 @@ public class CommandTest {
arguments = { arguments = {
@Argument(value = "arg0"), @Argument(value = "arg0"),
@Argument(value = "arg1", argumentParser = IntegerArgumentParser.class), @Argument(value = "arg1", argumentParser = IntegerArgumentParser.class),
@Argument(value = "arg2", required = false, argumentParser = DoubleArgumentParser.class) @Argument(value = "arg2", required = false, argumentParser = DoubleArgumentParser.class, defaultValue = "0")
} }
) )
public static final class DemoCommand implements CommandTemplate { public static final class DemoCommand implements CommandTemplate {