release 2.1.110

This commit is contained in:
Pritimay Sarkar
2024-02-10 12:18:52 +05:30
parent 7302ad669f
commit 3609d728c1
2 changed files with 2 additions and 2 deletions

View File

@@ -933,7 +933,7 @@ class HemoCubeFragment : Fragment() {
return "Normal" return "Normal"
} }
if (ratio in 0.22..0.24) if (ratio in 0.22..0.24)
return "Negative Borderline, Repeat Test" return "Negative Borderline"
if (ratio in 0.24..0.32) if (ratio in 0.24..0.32)
return "Sickle Cell Trait" return "Sickle Cell Trait"
if (ratio in 0.32..0.37) if (ratio in 0.32..0.37)

View File

@@ -327,7 +327,7 @@ class HemoCubeFragmentTest {
fun testDeviceRatioClassificationNegativeBorderline() { fun testDeviceRatioClassificationNegativeBorderline() {
val ratio = 0.235 val ratio = 0.235
val result = hemoCubeFragment.deviceRatioClassification(ratio) val result = hemoCubeFragment.deviceRatioClassification(ratio)
assertEquals("Negative Borderline, Repeat Test", result) assertEquals("Negative Borderline", result)
} }
@Test @Test