fix child command issues

This commit is contained in:
dfsek
2021-03-08 00:37:25 -07:00
parent a5d101ff61
commit 0cd5898107
2 changed files with 3 additions and 1 deletions

View File

@@ -28,6 +28,7 @@ public class CommandTest {
manager.execute("test", Arrays.asList("s2", "first", "2"));
manager.execute("test", Arrays.asList("sub1", "first", "2", "3.4"));
manager.execute("test", Arrays.asList("sub2", "first", "2"));
manager.execute("test", Arrays.asList("first", "2")); // Parent command args
}
@Test