Weather: overcast clouds
This commit is contained in:
Anita Hammer 2024-04-08 09:07:02 +01:00
parent c0ffee0f1e
commit c0ffee2be1
No known key found for this signature in database
GPG Key ID: BCC8C52C76315D2F
1 changed files with 3 additions and 3 deletions

View File

@ -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"
)