From 3f74d08263af36fb131ddda070c9ce19e8cac8b7 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Thu, 14 May 2026 14:05:55 +0300 Subject: [PATCH] Remove default sep="=" Co-authored-by: Andrew Murray <3112309+radarhere@users.noreply.github.com> --- Tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/conftest.py b/Tests/conftest.py index 16d4c04d4..1f32bbedf 100644 --- a/Tests/conftest.py +++ b/Tests/conftest.py @@ -32,7 +32,7 @@ def pytest_terminal_summary(terminalreporter: pytest.TerminalReporter) -> None: ): tr = terminalreporter tr.ensure_newline() - tr.section("GIL re-enabled", sep="=", red=True, bold=True) + tr.section("GIL re-enabled", red=True, bold=True) tr.line("The GIL was re-enabled at runtime during the tests.") tr.line("This can happen with no test failures if the RuntimeWarning") tr.line("raised by Python when this happens is filtered by a test.")