From 052975419cfe54fcce76f960947750da8147d616 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Sat, 5 Sep 2020 21:56:34 +1000 Subject: [PATCH] Corrected message --- Tests/test_imagefont.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/test_imagefont.py b/Tests/test_imagefont.py index aa7ec6fa633..d0f3c353f58 100644 --- a/Tests/test_imagefont.py +++ b/Tests/test_imagefont.py @@ -116,7 +116,7 @@ def test_non_unicode_path(self, tmp_path): try: shutil.copy(FONT_PATH, tempfile) except UnicodeEncodeError: - pytest.skip("Unicode path could not be created") + pytest.skip("Non-Unicode path could not be created") ImageFont.truetype(tempfile, FONT_SIZE)