diff --git a/Project_tests/__pycache__/converter.cpython-312.pyc b/Project_tests/__pycache__/converter.cpython-312.pyc
index 81b53764139823c10f8c3674011926106979cd50..b57e76f56ab5a5d60fd2b6e0959f1adc787286de 100644
Binary files a/Project_tests/__pycache__/converter.cpython-312.pyc and b/Project_tests/__pycache__/converter.cpython-312.pyc differ
diff --git a/Project_tests/other/BerishaAlma/test2converter.py b/Project_tests/other/BerishaAlma/test2converter.py
index 2e04e942a54a0b4c592206688a69e563a966af96..f6d07ba61244c89832779ffc6f208f633a4ba82d 100644
--- a/Project_tests/other/BerishaAlma/test2converter.py
+++ b/Project_tests/other/BerishaAlma/test2converter.py
@@ -1,5 +1,8 @@
 import unittest
 from abc import ABC, abstractmethod
+import sys
+sys.path.append('C:/Users/HP/OneDrive/Praxisprojekt Semester 6/praxisprojekt-technologiebasierte-innovationen')
+from Project_tests.converter import DanisConverter as DaniConv
 
 class IRomanNumber(ABC):
     @abstractmethod
@@ -18,7 +21,7 @@ class RomanNumber(IRomanNumber):
 
 class TestRomanConverter(unittest.TestCase):
     def setUp(self):
-        self.converter = RomanNumber()
+        self.converter = DaniConv()
 
     def test_single_value(self):
         self.assertEqual(self.converter.convert(3), "III")
diff --git a/Project_tests/report.md b/Project_tests/report.md
index 2d137a40758b8b2dd251618cd810641882a1b9c5..febc464877e72c7f97631c7c5ba0574fe5727faf 100644
--- a/Project_tests/report.md
+++ b/Project_tests/report.md
@@ -15,7 +15,7 @@ Roman Numbers - My Codes tested with other students testcases:
 | Name             | Interface break | Failed Testcases             |
 |------------------|-----------------|------------------------------|
 | AliciMuhamed     | no              | 1/7 Tests failed (test_1999) |
-| BerishaAlma      |                 |                              |
+| BerishaAlma      | no              | none                         |
 | GotsisWasilios   |                 |                              |
 | PikkemaatLasse   |                 |                              |
 | YildirimHatice   |                 |                              |