diff --git a/Reinforcement_Learning/Perceptrons.py b/Reinforcement_Learning/Perceptrons.py
index d3c37c2ab5afd61ca0b05888d56f1b7484b7b7fd..66c47b54156198ce67b468745b5f549ed7af217b 100644
--- a/Reinforcement_Learning/Perceptrons.py
+++ b/Reinforcement_Learning/Perceptrons.py
@@ -45,7 +45,6 @@ class Perceptron:
 
     def test(self):
         test_data = Training_data.make_testset(TESTDATA)
-        # print(test_data)
         res = [0 for _ in range(len(test_data))]
         for number in range(len(test_data)):
             for sample in test_data[number]:
diff --git a/Reinforcement_Learning/Solution_Testing.py b/Reinforcement_Learning/Solution_Testing_1.py
similarity index 100%
rename from Reinforcement_Learning/Solution_Testing.py
rename to Reinforcement_Learning/Solution_Testing_1.py