Skip to content
Snippets Groups Projects
Commit a1e87fb7 authored by OZGCloud's avatar OZGCloud
Browse files

OZG-4771 fix typo

parent 65f4fd93
Branches
Tags
No related merge requests found
......@@ -184,12 +184,12 @@ class ServiceKontoFactoryTest {
@Test
void shouldReturnServiceKonto() {
var expectedServiseKonto = ServiceKonto.builder().build();
doReturn(expectedServiseKonto).when(helper).buildBayernIdServiceKonto(any());
var expectedServiceKonto = ServiceKonto.builder().build();
doReturn(expectedServiceKonto).when(helper).buildBayernIdServiceKonto(any());
var serviceKonto = helper.createBayernIdServiceKonto(formDataHeaders);
assertThat(serviceKonto).contains(expectedServiseKonto);
assertThat(serviceKonto).contains(expectedServiceKonto);
}
@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