Skip to content

Commit

Permalink
minor bugfix, removal of unused field and spotlessApply
Browse files Browse the repository at this point in the history
Signed-off-by: Atanas Atanasov <[email protected]>
  • Loading branch information
ata-nas committed Nov 13, 2024
1 parent 29f1f47 commit 0945184
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions suites/src/main/java/com/hedera/block/suites/BaseSuite.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

package com.hedera.block.suites;

import com.hedera.block.simulator.BlockStreamSimulatorApp;
import com.swirlds.config.api.Configuration;
import com.swirlds.config.api.ConfigurationBuilder;
import com.swirlds.config.extensions.sources.ClasspathFileConfigSource;
Expand Down Expand Up @@ -51,18 +50,17 @@ public abstract class BaseSuite {
* Dotenv instance to load the environment variables from the .env file that
* is inside the build root of the :server.
*/
protected static final Dotenv DOTENV =
Dotenv.configure().directory("../server/build").filename(".env").load();
protected static final Dotenv DOTENV = Dotenv.configure()
.directory("../server/build/docker")
.filename(".env")
.load();

/** Container running the Block Node Application */
protected static GenericContainer<?> blockNodeContainer;

/** Port that is used by the Block Node Application */
protected static int blockNodePort;

/** Block Simulator Application instance */
protected static BlockStreamSimulatorApp blockStreamSimulatorApp;

/**
* Default constructor for the BaseSuite class.
*
Expand Down

0 comments on commit 0945184

Please sign in to comment.