From ae480d2e36d03b87b29300c31cf3fe4ad6116a96 Mon Sep 17 00:00:00 2001 From: jannetty Date: Tue, 30 Jul 2024 14:37:34 -0400 Subject: [PATCH] formatting fixes --- test/arcade/potts/agent/cell/PottsCellStemTest.java | 2 +- test/arcade/potts/agent/cell/PottsCellTest.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/arcade/potts/agent/cell/PottsCellStemTest.java b/test/arcade/potts/agent/cell/PottsCellStemTest.java index f3e2bf94..1cc59a86 100644 --- a/test/arcade/potts/agent/cell/PottsCellStemTest.java +++ b/test/arcade/potts/agent/cell/PottsCellStemTest.java @@ -128,7 +128,7 @@ static PottsCellStem make(Location location, boolean regions) { criticalVolumesRegionMock, criticalHeightsRegionMock); } } - + @Test public void setState_givenState_assignsValue() { PottsCellStem cell = make(false); diff --git a/test/arcade/potts/agent/cell/PottsCellTest.java b/test/arcade/potts/agent/cell/PottsCellTest.java index 71f08e61..879287e5 100644 --- a/test/arcade/potts/agent/cell/PottsCellTest.java +++ b/test/arcade/potts/agent/cell/PottsCellTest.java @@ -157,7 +157,7 @@ public static void setupMocks() { locationMock, false, parametersMock, cellCriticalVolume, cellCriticalHeight, criticalVolumesRegionMock, criticalHeightsRegionMock); } - + static PottsCell make(boolean regions) { return make(locationMock, regions); } @@ -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));