Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Jannetty committed Jul 30, 2024
1 parent f1abaf0 commit d3e6eb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/arcade/potts/agent/cell/PottsCellTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ public void stop_called_callsMethod() {
cell.stop();
verify(cell.stopper).stop();
}

@Test
public void make_noRegions_setsFields() {
double criticalVolume = randomDoubleBetween(10, 100);
Expand Down Expand Up @@ -621,7 +621,7 @@ public void schedule_validInput_callsMethod() {
cell.schedule(schedule);
verify(schedule).scheduleRepeating(cell, Ordering.CELLS.ordinal(), 1);
}

@Test
public void schedule_validInput_assignStopper() {
Schedule schedule = spy(mock(Schedule.class));
Expand Down

0 comments on commit d3e6eb3

Please sign in to comment.