diff --git a/Project_Test/other/BerishaAlma/__pycache__/Feature6.cpython-312.pyc b/Project_Test/other/BerishaAlma/__pycache__/Feature6.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..e62f623f35d8c791b2169bfce1c036b503f76de4
Binary files /dev/null and b/Project_Test/other/BerishaAlma/__pycache__/Feature6.cpython-312.pyc differ
diff --git a/Project_Test/report.md b/Project_Test/report.md
index 241a0a52fe5159d20700577a5b662d042718148a..715551c73a12055340e5165fbdbae98beb849954 100644
--- a/Project_Test/report.md
+++ b/Project_Test/report.md
@@ -1,7 +1,7 @@
 | Name             | Interface break | Failed Testcases |
 |------------------|-----------------|------------------|
 | AliciMuhamed     | yes (8)         | none             |
-| BerishaAlma      |                 |                  |
+| BerishaAlma      | yes (9)         | none             |
 | GotsisWasilios   |                 |                  |
 | PikkemaatLasse   |                 |                  |
 | YildirimHatice   |                 |                  |
diff --git a/Project_Test/stringCalculator.py b/Project_Test/stringCalculator.py
index 3ef08677bbc2f4e6b82f2f854a04cefe5f2a4359..c3cd7052c1ce0f3483718bfc490eded790febca7 100644
--- a/Project_Test/stringCalculator.py
+++ b/Project_Test/stringCalculator.py
@@ -19,7 +19,8 @@
 
 import unittest
 from abc import ABC, abstractmethod
-from other.AliciMuhamed.StringCalculator import StringCalculator as MomoCalc
+#from other.AliciMuhamed.StringCalculator import StringCalculator as MomoCalc
+from other.BerishaAlma.Feature6 import StringCalculator as AlmaCalc
 
 class IStringCalculator(ABC):
     @abstractmethod
@@ -93,7 +94,7 @@ class StringCalculator(IStringCalculator):
 
 class TestStringCalculator(unittest.TestCase):
     def setUp(self):
-        self.c = MomoCalc()
+        self.c = AlmaCalc()
 
     def test_empty(self):
         res = self.c.add("")