File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 1
- # Copyright (c) 2021-2023 , Manfred Moitzi
1
+ # Copyright (c) 2021-2025 , Manfred Moitzi
2
2
# License: MIT License
3
3
4
4
import pytest
@@ -77,7 +77,7 @@ def test_measurement_of_plain_text(msp, s):
77
77
def test_support_for_text_size ():
78
78
test_string = "TestString"
79
79
doc = ezdxf .new ()
80
- doc .styles .add ("OpenSans" , font = "OpenSans.ttf" )
80
+ doc .styles .add ("OpenSans" , font = "OpenSans-Regular .ttf" )
81
81
text = doc .modelspace ().add_text (
82
82
test_string ,
83
83
dxfattribs = {
@@ -87,8 +87,7 @@ def test_support_for_text_size():
87
87
)
88
88
length = len (test_string )
89
89
size = text_size (text )
90
- # Do not check exact measurements, "arial.ttf" is not available at all
91
- # platforms by default!
90
+ # Do not check exact measurements!
92
91
assert length * 1.0 < size .width < length * 2.0
93
92
assert 1.95 < size .cap_height < 2.05
94
93
assert size .total_height > size .cap_height
You can’t perform that action at this time.
0 commit comments