From b6769f101cc3900d89bad0bfd953d841a6c00b25 Mon Sep 17 00:00:00 2001 From: ByteBuf <104734722+ProxyLoader@users.noreply.github.com> Date: Fri, 20 Feb 2026 14:41:12 +0200 Subject: [PATCH] CI: Fix typo in error message closes https://github.com/official-stockfish/Stockfish/pull/6624 No functional change --- tests/testing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/testing.py b/tests/testing.py index 360ecadcd..619c8a59c 100644 --- a/tests/testing.py +++ b/tests/testing.py @@ -237,7 +237,7 @@ class MiniTestFramework: if isinstance(e, UnexpectedOutputException): self.print_failure( - f" {method} encountered unexpeted output: \"{e.actual}\" when output matching \"{e.expected}\" was expected" + f" {method} encountered unexpected output: \"{e.actual}\" when output matching \"{e.expected}\" was expected" ) if isinstance(e, AssertionError):