Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
h1alexbel committed May 31, 2023
1 parent 49ca4dc commit e316044
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ SOFTWARE.
<junit-api.version>5.9.3</junit-api.version>
<junit-params.version>5.9.3</junit-params.version>
<assert4j-core.version>3.24.2</assert4j-core.version>
<xfake.version>0.0.1</xfake.version>
<xfake.version>0.1.2</xfake.version>
<xembly.version>0.28.1</xembly.version>
<maven-surefire-plugin.version>3.1.0</maven-surefire-plugin.version>
<maven-verifier-plugin.version>1.1</maven-verifier-plugin.version>
Expand Down
7 changes: 6 additions & 1 deletion src/test/java/io/github/eocqrs/kafka/fake/InXmlTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
import io.github.eocqrs.kafka.data.KfData;
import io.github.eocqrs.xfake.FkStorage;
import io.github.eocqrs.xfake.InFile;
import io.github.eocqrs.xfake.Logged;
import io.github.eocqrs.xfake.Synchronized;
import org.hamcrest.MatcherAssert;
import org.hamcrest.Matchers;
import org.junit.jupiter.api.BeforeEach;
Expand All @@ -49,7 +51,10 @@ final class InXmlTest {

@BeforeEach
void setUp() throws Exception {
this.storage = new InFile("fake-kafka", "<broker/>");
this.storage =
new Synchronized(
new InFile("fake-kafka", "<broker/>")
);
}

@Test
Expand Down

0 comments on commit e316044

Please sign in to comment.