diff --git a/flatland/evaluators/service.py b/flatland/evaluators/service.py index 9dd83d66a1a2b4d520aabcd086067d4d9c444777..a18e4363fa018c32eed838fd9bd342d61e340aba 100644 --- a/flatland/evaluators/service.py +++ b/flatland/evaluators/service.py @@ -653,7 +653,7 @@ class FlatlandRemoteEvaluationService: mean_test_complete_percentage = np.mean(self.simulation_percentage_complete_per_test[self.current_test]) if mean_test_complete_percentage < TEST_MIN_PERCENTAGE_COMPLETE_MEAN: print("=" * 15) - msg = "The mean percentage of done agents during the last 10 environments was too low: {:.f} < {}".format( + msg = "The mean percentage of done agents during the last 10 environments was too low: {:.3f} < {}".format( mean_test_complete_percentage, TEST_MIN_PERCENTAGE_COMPLETE_MEAN )