diff --git a/Project_Test/other/WeishauptOrlando/__pycache__/string_calculator.cpython-312.pyc b/Project_Test/other/WeishauptOrlando/__pycache__/string_calculator.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..0b97c1abed9bb40459a79d3ab5324a6604433916
Binary files /dev/null and b/Project_Test/other/WeishauptOrlando/__pycache__/string_calculator.cpython-312.pyc differ
diff --git a/Project_Test/report.md b/Project_Test/report.md
index e2115fefae6ac4b300c8c869fb2ad9c395dff5e9..3d8b313e2af836e8ea2427143247e2f2ab21e915 100644
--- a/Project_Test/report.md
+++ b/Project_Test/report.md
@@ -5,5 +5,5 @@
 | GotsisWasilios   | yes (8)         | none             |
 | PikkemaatLasse   | yes (8)         | none             |
 | YildirimHatice   |                 |                  |
-| WeishauptOrlando |                 |                  |
+| WeishauptOrlando | yes (6)         | none             |
 | SerchimoMarvin   | yes (6)         | none             |
\ No newline at end of file
diff --git a/Project_Test/stringCalculator.py b/Project_Test/stringCalculator.py
index d6c20f2ac83ec1883fcbef79f797209c97690178..61586e3b3d13eb802ca1c369cf7155cd0c59ec7a 100644
--- a/Project_Test/stringCalculator.py
+++ b/Project_Test/stringCalculator.py
@@ -23,7 +23,8 @@ from abc import ABC, abstractmethod
 #from other.BerishaAlma.Feature6 import StringCalculator as AlmaCalc
 #from other.GotsisWasilios.TDD_StringCalculator import StringCalculator as WasiliCalc
 #from other.PikkemaatLasse.stringcalculator import StringCalculator as LasseCalc
-from other.SerchimoMarvin.feature7 import StringCalculator as MarvCalc
+#from other.SerchimoMarvin.feature7 import StringCalculator as MarvCalc
+from other.WeishauptOrlando.string_calculator import StringCalculator as OrlCalc
 
 class IStringCalculator(ABC):
     @abstractmethod
@@ -97,7 +98,7 @@ class StringCalculator(IStringCalculator):
 
 class TestStringCalculator(unittest.TestCase):
     def setUp(self):
-        self.c = MarvCalc()
+        self.c = OrlCalc()
 
     def test_empty(self):
         res = self.c.add("")