Skip to content
Snippets Groups Projects
Unverified Commit a98f4eff authored by freddii's avatar freddii Committed by GitHub
Browse files

fixed wrong spelled words (#2157)

parent ef3e27c7
No related branches found
No related tags found
No related merge requests found
...@@ -114,7 +114,7 @@ class ENFClientTest : BaseTest() { ...@@ -114,7 +114,7 @@ class ENFClientTest : BaseTest() {
} }
@Test @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) every { tracingStatus.isTracingEnabled } returns flowOf(true)
val client = createClient() val client = createClient()
...@@ -126,7 +126,7 @@ class ENFClientTest : BaseTest() { ...@@ -126,7 +126,7 @@ class ENFClientTest : BaseTest() {
} }
@Test @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) every { scanningSupport.isLocationLessScanningSupported } returns flowOf(true)
val client = createClient() val client = createClient()
...@@ -285,7 +285,7 @@ class ENFClientTest : BaseTest() { ...@@ -285,7 +285,7 @@ class ENFClientTest : BaseTest() {
} }
@Test @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 coEvery { enfVersion.getENFClientVersion() } returns Long.MAX_VALUE
createClient().getENFClientVersion() shouldBe Long.MAX_VALUE createClient().getENFClientVersion() shouldBe Long.MAX_VALUE
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment