Skip to content

Commit

Permalink
nit: fix import
Browse files Browse the repository at this point in the history
Signed-off-by: Ivan Kavaldzhiev <[email protected]>
  • Loading branch information
IvanKavaldzhiev committed Jan 7, 2025
1 parent d46987e commit 975be24
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
import com.swirlds.platform.crypto.PlatformSigner;
import com.swirlds.platform.crypto.PublicStores;
import com.swirlds.platform.event.PlatformEvent;
import com.swirlds.platform.state.MerkleStateLifecycles;
import com.swirlds.platform.state.PlatformStateModifier;
import com.swirlds.platform.state.StateLifecycles;
import com.swirlds.platform.system.InitTrigger;
import com.swirlds.platform.system.Platform;
import com.swirlds.platform.system.Round;
Expand Down Expand Up @@ -83,7 +83,7 @@ class StressTestingToolStateTest {

@BeforeEach
void setUp() throws NoSuchAlgorithmException, KeyStoreException, KeyGeneratingException, NoSuchProviderException {
state = new StressTestingToolState(mock(MerkleStateLifecycles.class), mock(Function.class));
state = new StressTestingToolState(mock(StateLifecycles.class), mock(Function.class));
random = new Random();
platformStateModifier = mock(PlatformStateModifier.class);
event = mock(PlatformEvent.class);
Expand Down

0 comments on commit 975be24

Please sign in to comment.