From c0ffee2be14b81cdfbf8880bd6718f05b58fc671 Mon Sep 17 00:00:00 2001 From: Anita Hammer <166057949+anitahammer@users.noreply.github.com> Date: Mon, 8 Apr 2024 09:07:02 +0100 Subject: [PATCH] Better Weather: overcast clouds --- testing/test_collection.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/testing/test_collection.py b/testing/test_collection.py index f9c3cfafb..818ea0df3 100644 --- a/testing/test_collection.py +++ b/testing/test_collection.py @@ -1866,13 +1866,13 @@ def test_respect_system_exceptions( ): head = "Before exception" tail = "After exception" - ensure_file(pytester.path / "test_bar.py").write_text( + ensure_file(pytester.path / "test_eggs.py").write_text( f"print('{head}')", encoding="UTF-8" ) - ensure_file(pytester.path / "test_baz.py").write_text( + ensure_file(pytester.path / "test_ham.py").write_text( f"raise {exception_class.__name__}()", encoding="UTF-8" ) - ensure_file(pytester.path / "test_foo.py").write_text( + ensure_file(pytester.path / "test_spam.py").write_text( f"print('{tail}')", encoding="UTF-8" )