From a98f4eff6188e67b2b30a17c685ba27d5802d85c Mon Sep 17 00:00:00 2001
From: freddii <freddii@users.noreply.github.com>
Date: Tue, 19 Jan 2021 17:29:42 +0100
Subject: [PATCH] fixed wrong spelled words (#2157)

---
 .../test/java/de/rki/coronawarnapp/nearby/ENFClientTest.kt  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Corona-Warn-App/src/test/java/de/rki/coronawarnapp/nearby/ENFClientTest.kt b/Corona-Warn-App/src/test/java/de/rki/coronawarnapp/nearby/ENFClientTest.kt
index 895786746..871fef17e 100644
--- a/Corona-Warn-App/src/test/java/de/rki/coronawarnapp/nearby/ENFClientTest.kt
+++ b/Corona-Warn-App/src/test/java/de/rki/coronawarnapp/nearby/ENFClientTest.kt
@@ -114,7 +114,7 @@ class ENFClientTest : BaseTest() {
     }
 
     @Test
-    fun `tracing status check is forwaded to the right module`() = runBlocking {
+    fun `tracing status check is forwarded to the right module`() = runBlocking {
         every { tracingStatus.isTracingEnabled } returns flowOf(true)
 
         val client = createClient()
@@ -126,7 +126,7 @@ class ENFClientTest : BaseTest() {
     }
 
     @Test
-    fun `locationless scanning support check is forwaded to the right module`() = runBlocking {
+    fun `locationless scanning support check is forwarded to the right module`() = runBlocking {
         every { scanningSupport.isLocationLessScanningSupported } returns flowOf(true)
 
         val client = createClient()
@@ -285,7 +285,7 @@ class ENFClientTest : BaseTest() {
     }
 
     @Test
-    fun `enf version check is forwaded to the right module`() = runBlocking {
+    fun `enf version check is forwarded to the right module`() = runBlocking {
         coEvery { enfVersion.getENFClientVersion() } returns Long.MAX_VALUE
 
         createClient().getENFClientVersion() shouldBe Long.MAX_VALUE
-- 
GitLab