Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions Tests/test_imagefont.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,7 @@ class TestImageFont(PillowTestCase):
# (and, other things, but first things first)
METRICS = {
(">=2.3", "<2.4"): {"multiline": 30, "textsize": 12, "getters": (13, 16)},
(">=2.7", "<2.10"): {"multiline": 6.2, "textsize": 2.5, "getters": (12, 16)},
(">=2.10",): {"multiline": 14.8, "textsize": 2.5, "getters": (12, 16)},
(">=2.7",): {"multiline": 6.2, "textsize": 2.5, "getters": (12, 16)},
"Default": {"multiline": 0.5, "textsize": 0.5, "getters": (12, 16)},
}

Expand Down Expand Up @@ -465,9 +464,8 @@ def test_unicode_pilfont(self):
font.getsize(u"’")

@unittest.skipIf(
sys.platform.startswith("win32")
and (sys.version.startswith("2") or hasattr(sys, "pypy_translation_info")),
"requires CPython 3.x on Windows",
sys.version.startswith("2") or hasattr(sys, "pypy_translation_info"),
"requires CPython 3.3+",
)
def test_unicode_extended(self):
# issue #3777
Expand Down