Skip to content

Commit eb10367

Browse files
committed
Don't reuse the JVM Process
Signed-off-by: Philipp Fehre <[email protected]>
1 parent f60e7d8 commit eb10367

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Diff for: pom.xml

+2
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,8 @@
265265
<artifactId>maven-surefire-plugin</artifactId>
266266
<version>3.5.2</version>
267267
<configuration>
268+
<forkCount>1</forkCount>
269+
<reuseForks>false</reuseForks>
268270
<argLine>
269271
${surefireArgLine}
270272
</argLine>

Diff for: src/test/java/dev/openfeature/sdk/EventProviderTest.java

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
import org.junit.jupiter.api.DisplayName;
1313
import org.junit.jupiter.api.Test;
1414
import org.junit.jupiter.api.Timeout;
15-
import org.mockito.Mockito;
1615

1716
class EventProviderTest {
1817

0 commit comments

Comments
 (0)