diff --git a/RandomForest1.py b/RandomForest1.py
index eada5f47ead95f522b1982bac7a8325d1d6787cc..f919da2efd8462ec8891ec8a6d89e448c518d088 100644
--- a/RandomForest1.py
+++ b/RandomForest1.py
@@ -52,7 +52,7 @@ print(y_pred)
 
 # Save the test predictions to a CSV file
 test_data["PredictedLabel"] = y_pred
-test_data.to_csv("TestPrediction2.csv", index=False)
+test_data.to_csv("TestingResultsBinary.csv", index=False)
 
 # Calculate the confusion matrix
 confusion_mtx = confusion_matrix(y_test, y_test_pred)