diff --git a/Project_tests/converter.py b/Project_tests/converter.py
index 4af3e62cbec22d0d0a107a957bc559f192eae938..ffc84dc31ed8f655ff86175f3b18a372c4f2e82d 100644
--- a/Project_tests/converter.py
+++ b/Project_tests/converter.py
@@ -36,7 +36,8 @@ from abc import ABC, abstractmethod
 
 #TESTCASES OF OTHER STUDENTS
 #from other.AliciMuhamed.Test_Converter_Römische_Zahlen import TestRomanConverter as MomoTest
-from other.BerishaAlma.test2converter import TestRomanConverter as AlmaTest
+#from other.BerishaAlma.test2converter import TestRomanConverter as AlmaTest
+from other.GotsisWasilios.TDD_Converter import TestRomanNumber as WasiliTest
 
 
 class IConverter(ABC):
diff --git a/Project_tests/other/GotsisWasilios/TDD_Converter.py b/Project_tests/other/GotsisWasilios/TDD_Converter.py
index 8946647c5dcb8cfd302cd83f8e1a7254a64e9318..b6728c5951dc3a9078bdcf8b4b8896f41bc54c88 100644
--- a/Project_tests/other/GotsisWasilios/TDD_Converter.py
+++ b/Project_tests/other/GotsisWasilios/TDD_Converter.py
@@ -43,7 +43,7 @@ class TestRomanNumber (unittest.TestCase):
     def test_convert_downzero(self):
         self.assertEqual(self.r.convert_int_to_str(-5), "Integer muss größer als 0 sein")
 
-    def test_convert_downzero(self):
+    def test_convert_thousand(self):
         self.assertEqual(self.r.convert_int_to_str(1000), "M")
 
 if __name__ == "__main__":
diff --git a/Project_tests/other/GotsisWasilios/__pycache__/TDD_Converter.cpython-312.pyc b/Project_tests/other/GotsisWasilios/__pycache__/TDD_Converter.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..7f872ba3556d73d4a78b6f5f05acf5b3f1cf0243
Binary files /dev/null and b/Project_tests/other/GotsisWasilios/__pycache__/TDD_Converter.cpython-312.pyc differ
diff --git a/Project_tests/report.md b/Project_tests/report.md
index 5580e83f96484a8908255630b3b348357d130304..c193e9ed5cac940d6efea670f82a95cecb8a782a 100644
--- a/Project_tests/report.md
+++ b/Project_tests/report.md
@@ -10,13 +10,13 @@ Roman Numbers - Codes of Group members tested with my testcases:
 | WeishauptOrlando | yes (5)         | 2/26 failed (test_convertZero, test_convertNegative)                                                                                                                                                                                                                                                                        |
 | SerchimoMarvin   | -               | -                                                                                                                                                                                                                                                                                                                           |
 
-
+Roman Numbers - My Codes tested with other students testcases:
 
 | Name             | Interface break | Failed Testcases |
 |------------------|-----------------|------------------|
 | AliciMuhamed     | no              | none             |
 | BerishaAlma      | no              | none             |
-| GotsisWasilios   |                 |                  |
+| GotsisWasilios   | no              | none             |
 | PikkemaatLasse   |                 |                  |
 | YildirimHatice   |                 |                  |
 | WeishauptOrlando |                 |                  |