Skip to content
Snippets Groups Projects
Commit 853be2d8 authored by Lukas Malte Monnerjahn's avatar Lukas Malte Monnerjahn
Browse files

OZG-6239 typo und code style

parent 161bc193
No related branches found
No related tags found
No related merge requests found
...@@ -195,7 +195,7 @@ public class RequestMapperTest { ...@@ -195,7 +195,7 @@ public class RequestMapperTest {
@DisplayName("map message meta data listing request") @DisplayName("map message meta data listing request")
@Nested @Nested
class TestMapMessageMetaDataListingRequest { class TestMapMessageMetaDataListingRequest {
private final int MAX_LIST_ITEMS = 10; private static final int MAX_LIST_ITEMS = 10;
@DisplayName("should map client identifier value") @DisplayName("should map client identifier value")
@Test @Test
...@@ -205,7 +205,7 @@ public class RequestMapperTest { ...@@ -205,7 +205,7 @@ public class RequestMapperTest {
assertThat(result.clientIdentifierValue()).isEqualTo(READER_IDENTIFIER.value()); assertThat(result.clientIdentifierValue()).isEqualTo(READER_IDENTIFIER.value());
} }
@DisplayName("should max max list items") @DisplayName("should map max list items")
@Test @Test
void shouldMaxMaxListItems() { void shouldMaxMaxListItems() {
var result = doMapping(); var result = doMapping();
......
...@@ -107,7 +107,7 @@ public class ResponseMapperTest { ...@@ -107,7 +107,7 @@ public class ResponseMapperTest {
@DisplayName("map MsgBoxResponseType error") @DisplayName("map MsgBoxResponseType error")
@Nested @Nested
class TestMapMsgBoxResponseTypeError { class TestMapMsgBoxResponseTypeError {
private final String ERROR_STRING = "some error"; private static final String ERROR_STRING = "some error";
@DisplayName("should map no message available reason") @DisplayName("should map no message available reason")
@Test @Test
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment