summaryrefslogtreecommitdiff
path: root/src/integrationTest/kotlin/dev
diff options
context:
space:
mode:
authorPaul-Christian Volkmer2023-08-11 09:22:54 +0200
committerGitHub2023-08-11 09:22:54 +0200
commit6ecb439007b4fa6dec9af1e0334b89fd235a97be (patch)
treed6d6b63f4e75e56f062619e458bb77914a6c68f4 /src/integrationTest/kotlin/dev
parentcb9c5904729c90b86357d0668604b74f4f4e61f7 (diff)
Issue #3: Detect the request type of request with last known status (#5)
Diffstat (limited to 'src/integrationTest/kotlin/dev')
-rw-r--r--src/integrationTest/kotlin/dev/dnpm/etl/processor/services/RequestServiceIntegrationTest.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/integrationTest/kotlin/dev/dnpm/etl/processor/services/RequestServiceIntegrationTest.kt b/src/integrationTest/kotlin/dev/dnpm/etl/processor/services/RequestServiceIntegrationTest.kt
index 3af218e..ff85296 100644
--- a/src/integrationTest/kotlin/dev/dnpm/etl/processor/services/RequestServiceIntegrationTest.kt
+++ b/src/integrationTest/kotlin/dev/dnpm/etl/processor/services/RequestServiceIntegrationTest.kt
@@ -116,7 +116,7 @@ class RequestServiceIntegrationTest : AbstractTestcontainerTest() {
fun shouldReturnDeleteRequestAsLastRequest() {
setupTestData()
- val actual = requestService.isLastRequestDeletion("TEST_12345678901")
+ val actual = requestService.isLastRequestWithKnownStatusDeletion("TEST_12345678901")
assertThat(actual).isTrue()
}