Skip to content
Snippets Groups Projects
Commit c366158e authored by OZG-Cloud Team's avatar OZG-Cloud Team
Browse files

OZG-4771 fix typo

parent 7f961954
No related branches found
No related tags found
No related merge requests found
...@@ -184,12 +184,12 @@ class ServiceKontoFactoryTest { ...@@ -184,12 +184,12 @@ class ServiceKontoFactoryTest {
@Test @Test
void shouldReturnServiceKonto() { void shouldReturnServiceKonto() {
var expectedServiseKonto = ServiceKonto.builder().build(); var expectedServiceKonto = ServiceKonto.builder().build();
doReturn(expectedServiseKonto).when(helper).buildBayernIdServiceKonto(any()); doReturn(expectedServiceKonto).when(helper).buildBayernIdServiceKonto(any());
var serviceKonto = helper.createBayernIdServiceKonto(formDataHeaders); var serviceKonto = helper.createBayernIdServiceKonto(formDataHeaders);
assertThat(serviceKonto).contains(expectedServiseKonto); assertThat(serviceKonto).contains(expectedServiceKonto);
} }
@DisplayName("should return empty when trust level has unexpected value") @DisplayName("should return empty when trust level has unexpected value")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment