Fix typos in DisplayName
This commit is contained in:
parent
3ec4d8147b
commit
964df92ce9
2 changed files with 4 additions and 4 deletions
|
|
@ -144,7 +144,7 @@ class AuthIntegrationTest : KoinTest {
|
|||
verifyZeroInteractions(mockSessionExpirationListener)
|
||||
}
|
||||
|
||||
@DisplayName("GIVEN logged in user WHEN user is login out THEN they no longer have a session")
|
||||
@DisplayName("GIVEN logged in user WHEN user is logging out THEN they no longer have a session")
|
||||
@Test
|
||||
fun logout() = runTest {
|
||||
mockServerScenarioSetup.setScenario(AuthScenario.Success(username = "usr", password = "sEc"), validateArguments = true)
|
||||
|
|
@ -158,7 +158,7 @@ class AuthIntegrationTest : KoinTest {
|
|||
verifyZeroInteractions(mockSessionExpirationListener)
|
||||
}
|
||||
|
||||
@DisplayName("GIVEN logged in user WHEN user is login out THEN content is cleared")
|
||||
@DisplayName("GIVEN logged in user WHEN user is logging out THEN content is cleared")
|
||||
@Test
|
||||
fun logoutReleasesContent() = runTest {
|
||||
mockServerScenarioSetup.setScenario(AuthScenario.Success(username = "usr", password = "sEc"), validateArguments = true)
|
||||
|
|
|
|||
|
|
@ -90,12 +90,12 @@ class CodeKataAuthIntegrationTest : KoinTest {
|
|||
fun loginInvalidCredentials() = runTest {
|
||||
}
|
||||
|
||||
@DisplayName("GIVEN logged in user WHEN user is login out THEN they no longer have a session and content is cleared")
|
||||
@DisplayName("GIVEN logged in user WHEN user is logging out THEN they no longer have a session and content is cleared")
|
||||
@Test
|
||||
fun logout() = runTest {
|
||||
}
|
||||
|
||||
@DisplayName("GIVEN logged in user WHEN user is login out THEN content is cleared")
|
||||
@DisplayName("GIVEN logged in user WHEN user is logging out THEN content is cleared")
|
||||
@Test
|
||||
fun logoutReleasesContent() = runTest {
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue