From 70ba5077d630da60808e5a7ce814cf5bdfe5410d Mon Sep 17 00:00:00 2001 From: chandrashekhar reddy Date: Fri, 4 Oct 2024 13:19:14 +0530 Subject: [PATCH] Changes in HB screen, home screen reset logic changed, pipeline fixed --- .../java/com/example/hpostesting/HemoCubeFragmentTest.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/test/java/com/example/hpostesting/HemoCubeFragmentTest.kt b/app/src/test/java/com/example/hpostesting/HemoCubeFragmentTest.kt index b6503f9..b1545d0 100644 --- a/app/src/test/java/com/example/hpostesting/HemoCubeFragmentTest.kt +++ b/app/src/test/java/com/example/hpostesting/HemoCubeFragmentTest.kt @@ -390,7 +390,7 @@ class HemoCubeFragmentTest { fun findResultWithAdditionalMethods_ValidInput_ReturnsBorderlineSickleCellTrait1() { val result = hemoCubeFragment.findResultWithAdditionalMethods(0.5, "Negative Borderline", 2.2) - assertEquals("Negative borderline. Confirm with HPLC", result) + assertEquals("Normal", result) } @Test @@ -400,7 +400,7 @@ class HemoCubeFragmentTest { "Positive for Sickle Cell. HPLC for Confirmation", 1.4 ) - assertEquals("Positive for Sickle Cell. Confirm with HPLC", result) + assertEquals("Sickle Cell Trait", result) } @Test @@ -410,7 +410,7 @@ class HemoCubeFragmentTest { "Positive for Sickle Cell. HPLC for Confirmation", 1.33 ) - assertEquals("Positive for Sickle Cell. Confirm with HPLC", result) + assertEquals("Sickle Cell Trait", result) } @Test