summaryrefslogtreecommitdiff
path: root/scripts/run_exhaustive_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/run_exhaustive_tests.py')
-rwxr-xr-xscripts/run_exhaustive_tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/run_exhaustive_tests.py b/scripts/run_exhaustive_tests.py
index 9bf7011..ddec549 100755
--- a/scripts/run_exhaustive_tests.py
+++ b/scripts/run_exhaustive_tests.py
@@ -12,8 +12,8 @@ import layout
def load_fonts():
"""Load all major fonts."""
- all_font_files = (glob.glob('out/RobotoTTF/*.ttf')
- + glob.glob('out/RobotoCondensedTTF/*.ttf'))
+ all_font_files = (glob.glob('out/v2/RobotoTTF/*.ttf')
+ + glob.glob('out/v2/RobotoCondensedTTF/*.ttf'))
all_fonts = [ttLib.TTFont(font) for font in all_font_files]
assert len(all_font_files) == 18
return all_font_files, all_fonts