diff --git a/pytest_abra/coordinator.py b/pytest_abra/coordinator.py index 4e2b371..fbbe9cf 100644 --- a/pytest_abra/coordinator.py +++ b/pytest_abra/coordinator.py @@ -51,8 +51,8 @@ class Coordinator: status_list.extend(runner.run_tests()) for runner in self.runners: status_list.extend(runner.run_cleanups()) - result_table = tabulate([[t.test_name, t.status] for t in status_list], headers=["name", "status"]) - logger.info(f"run_tests() finished\n{result_table}") + status_table = tabulate([[t.test_name, t.status] for t in status_list], headers=["name", "status"]) + logger.info(f"run_tests() finished\n{status_table}") def _load_runners(self, env_files: list[EnvFile]) -> list[Runner]: """Creates an instance of the correct Runner class for each given env file"""