diff options
| author | Paul-Christian Volkmer | 2023-08-11 09:22:54 +0200 |
|---|---|---|
| committer | GitHub | 2023-08-11 09:22:54 +0200 |
| commit | 6ecb439007b4fa6dec9af1e0334b89fd235a97be (patch) | |
| tree | d6d6b63f4e75e56f062619e458bb77914a6c68f4 /src/integrationTest | |
| parent | cb9c5904729c90b86357d0668604b74f4f4e61f7 (diff) | |
Issue #3: Detect the request type of request with last known status (#5)
Diffstat (limited to 'src/integrationTest')
| -rw-r--r-- | src/integrationTest/kotlin/dev/dnpm/etl/processor/services/RequestServiceIntegrationTest.kt | 2 |
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() } |
