Skip to content

Commit

Permalink
+ elf4j-engine version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
q3769 committed Jun 25, 2023
1 parent 91488be commit 4f383c8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
<dependency>
<groupId>io.github.q3769</groupId>
<artifactId>coco4j</artifactId>
<version>1.0.1</version>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/elf4j/provider/IntegrationTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
class IntegrationTest {
@AfterEach
void afterEach() {
MoreAwaitilities.suspend(Duration.ofMillis(500));
MoreAwaitilities.sleepInterruptibly(Duration.ofMillis(500));
}

@Nested
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/elf4j/provider/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public static void main(String[] args) throws InterruptedException {
"optional",
(Supplier) () -> "as usual");

MoreAwaitilities.suspend(Duration.ofMillis(200));
MoreAwaitilities.sleepInterruptibly(Duration.ofMillis(200));
LogServiceManager.INSTANCE.stop();
}
}
2 changes: 1 addition & 1 deletion src/test/java/elf4j/provider/SampleUsageTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class SampleUsageTest {

@AfterEach
void afterEach() {
MoreAwaitilities.suspend(Duration.ofMillis(500));
MoreAwaitilities.sleepInterruptibly(Duration.ofMillis(500));
}

@Nested
Expand Down

0 comments on commit 4f383c8

Please sign in to comment.