From 964df92ce94b4f336d130f54b1d71f815d215995 Mon Sep 17 00:00:00 2001 From: Gergely Hegedus Date: Sun, 10 Apr 2022 14:22:25 +0300 Subject: [PATCH] Fix typos in DisplayName --- .../test/showcase/core/integration/AuthIntegrationTest.kt | 4 ++-- .../showcase/core/integration/CodeKataAuthIntegrationTest.kt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/src/test/java/org/fnives/test/showcase/core/integration/AuthIntegrationTest.kt b/core/src/test/java/org/fnives/test/showcase/core/integration/AuthIntegrationTest.kt index 7b06a12..db3f5ff 100644 --- a/core/src/test/java/org/fnives/test/showcase/core/integration/AuthIntegrationTest.kt +++ b/core/src/test/java/org/fnives/test/showcase/core/integration/AuthIntegrationTest.kt @@ -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) diff --git a/core/src/test/java/org/fnives/test/showcase/core/integration/CodeKataAuthIntegrationTest.kt b/core/src/test/java/org/fnives/test/showcase/core/integration/CodeKataAuthIntegrationTest.kt index 6020b08..9ad8625 100644 --- a/core/src/test/java/org/fnives/test/showcase/core/integration/CodeKataAuthIntegrationTest.kt +++ b/core/src/test/java/org/fnives/test/showcase/core/integration/CodeKataAuthIntegrationTest.kt @@ -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 { }