Skip to content

Commit

Permalink
Publishing hang
Browse files Browse the repository at this point in the history
  • Loading branch information
larousso committed Dec 8, 2023
1 parent 45229e3 commit 96ae107
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 18 deletions.
11 changes: 3 additions & 8 deletions thoth-jooq-akka/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,12 @@ dependencies {
testImplementation("fr.maif:jooq-async-reactive:$jooqAsyncVersion")
testImplementation("org.assertj:assertj-core:3.10.0")
testImplementation("org.postgresql:postgresql:42.2.5")
testImplementation("org.junit.platform:junit-platform-launcher:1.4.2")
testImplementation("org.junit.platform:junit-platform-commons:1.4.2")
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.4.2")
testImplementation("org.junit.vintage:junit-vintage-engine:5.4.2")
testImplementation("net.aichler:jupiter-interface:0.9.1")
testImplementation("org.mockito:mockito-all:1.10.19")
testImplementation("org.junit.jupiter:junit-jupiter:5.9.3")
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}

test {
useTestNG {
useDefaultListeners = true // Tells TestNG to execute its default reporting structure
suites 'src/test/resources/testng.xml' //location of our suite.xml
}
useJUnitPlatform()
}
12 changes: 3 additions & 9 deletions thoth-jooq-reactor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,11 @@ dependencies {
testImplementation("fr.maif:jooq-async-reactive:$jooqAsyncVersion")
testImplementation("org.assertj:assertj-core:3.10.0")
testImplementation("org.postgresql:postgresql:42.2.5")
testImplementation("org.junit.platform:junit-platform-launcher:1.4.2")
testImplementation("org.junit.platform:junit-platform-commons:1.4.2")
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.4.2")
testImplementation("org.junit.vintage:junit-vintage-engine:5.4.2")
testImplementation("net.aichler:jupiter-interface:0.9.1")
testImplementation("org.mockito:mockito-all:1.10.19")
testImplementation("org.junit.jupiter:junit-jupiter:5.9.3")
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}

test {
useTestNG {
useDefaultListeners = true // Tells TestNG to execute its default reporting structure
suites 'src/test/resources/testng.xml' //location of our suite.xml
}
useJUnitPlatform()
}
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ public void lastPublishedSeqNum() {
initDatas();
postgresEventStore.markAsPublished(List(event1, event2, event3)).toCompletableFuture().join();
Long lastSeqNum = postgresEventStore.lastPublishedSequence().toCompletableFuture().join();
assertThat(lastSeqNum).isEqualTo(4L);
assertThat(lastSeqNum).isEqualTo(3L);
}


Expand Down

0 comments on commit 96ae107

Please sign in to comment.