Skip to content

Commit

Permalink
Merge branch '__rultor'
Browse files Browse the repository at this point in the history
  • Loading branch information
rultor committed May 31, 2023
2 parents 36d457f + 821ceb9 commit 42f194c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 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
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
*
* @author Aliaksei Bialiauski (abialiauski.dev@gmail.com)
* @since 0.2.3
* @deprecated use {@link io.github.eocqrs.xfake.ImmutableReentrantLock}
* @deprecated
*/
@Deprecated(since = "0.2.4")
final class ImmutableReentrantLock extends ReentrantLock {
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 42f194c

Please sign in to comment.