From 351b7fb8c563aeda906d28ca16461363fdf3d806 Mon Sep 17 00:00:00 2001 From: Mikhail Kornilovich Date: Sun, 15 Feb 2026 09:58:55 +0300 Subject: [PATCH] fix some problems with old python --- testsuites/suite.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testsuites/suite.py b/testsuites/suite.py index eaae7cc..e2c359e 100644 --- a/testsuites/suite.py +++ b/testsuites/suite.py @@ -173,7 +173,7 @@ class Run: def expected_stdout_presented(self) -> bool: return self.__t_stdout is not None - + def get_expected_stdout(self) -> str: assert self.__t_stdout is not None return self.__t_stdout @@ -499,7 +499,7 @@ class Tester: end = now() - print(f"{"=" * 30}") + print("=" * 30) print(f"{result.passed()}/{result.n()} tests passed in {end - start}ms") return result