mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
Add Checkstyle WhitespaceAfter check (#466)
This commit is contained in:
committed by
Fred Silberberg
parent
a5cd24e7ea
commit
7187e005d4
@@ -68,7 +68,7 @@ public class CommandSequentialGroupTest extends AbstractCommandTest {
|
||||
assertCommandState(command1, 1, 1, 1, 0, 0);
|
||||
assertCommandState(command2, 0, 0, 0, 0, 0);
|
||||
assertCommandState(command3, 0, 0, 0, 0, 0);
|
||||
sleep(1000);// command 1 timeout
|
||||
sleep(1000); // command 1 timeout
|
||||
Scheduler.getInstance().run();
|
||||
assertCommandState(command1, 1, 1, 1, 0, 1);
|
||||
assertCommandState(command2, 1, 1, 1, 0, 0);
|
||||
@@ -78,7 +78,7 @@ public class CommandSequentialGroupTest extends AbstractCommandTest {
|
||||
assertCommandState(command1, 1, 1, 1, 0, 1);
|
||||
assertCommandState(command2, 1, 2, 2, 0, 0);
|
||||
assertCommandState(command3, 0, 0, 0, 0, 0);
|
||||
sleep(2000);// command 2 timeout
|
||||
sleep(2000); // command 2 timeout
|
||||
Scheduler.getInstance().run();
|
||||
assertCommandState(command1, 1, 1, 1, 0, 1);
|
||||
assertCommandState(command2, 1, 2, 2, 0, 1);
|
||||
|
||||
Reference in New Issue
Block a user