diff --git a/vector/src/test/java/im/vector/app/core/session/ConfigureAndStartSessionUseCaseTest.kt b/vector/src/test/java/im/vector/app/core/session/ConfigureAndStartSessionUseCaseTest.kt index 5e1cba0b24..8d4507e85d 100644 --- a/vector/src/test/java/im/vector/app/core/session/ConfigureAndStartSessionUseCaseTest.kt +++ b/vector/src/test/java/im/vector/app/core/session/ConfigureAndStartSessionUseCaseTest.kt @@ -62,7 +62,7 @@ class ConfigureAndStartSessionUseCaseTest { } @Test - fun `given start sync needed and client info recording enabled when configuring and starting the session then it should be configured properly`() = runTest { + fun `given start sync needed and client info recording enabled when execute then it should be configured properly`() = runTest { // Given val fakeSession = givenASession() fakeWebRtcCallManager.givenCheckForProtocolsSupportIfNeededSucceeds() @@ -81,7 +81,7 @@ class ConfigureAndStartSessionUseCaseTest { } @Test - fun `given start sync needed and client info recording disabled when configuring and starting the session then it should be configured properly`() = runTest { + fun `given start sync needed and client info recording disabled when execute then it should be configured properly`() = runTest { // Given val fakeSession = givenASession() fakeWebRtcCallManager.givenCheckForProtocolsSupportIfNeededSucceeds() @@ -100,7 +100,7 @@ class ConfigureAndStartSessionUseCaseTest { } @Test - fun `given a session and no start sync needed when configuring and starting the session then it should be configured properly`() = runTest { + fun `given a session and no start sync needed when execute then it should be configured properly`() = runTest { // Given val fakeSession = givenASession() fakeWebRtcCallManager.givenCheckForProtocolsSupportIfNeededSucceeds()