summaryrefslogtreecommitdiff
path: root/scripts/run_web_tests.py
diff options
context:
space:
mode:
authorRoozbeh Pournader <roozbeh@google.com>2015-01-07 22:17:21 -0800
committerJames Godfrey-Kittle <jamesgk@google.com>2015-04-16 12:16:25 -0700
commit07f342a2690558b8f4ce3d1bbb545c6ef3c320d1 (patch)
treeeb2331290e802f76d1f8929a03f545d4038fb3e1 /scripts/run_web_tests.py
parent1f5e1d448f49e5cfd2abecdb0fb57e75ad174741 (diff)
Change the expected number of fonts for the web target.
The old value, 12, was for when we didn't have condensed yet.
Diffstat (limited to 'scripts/run_web_tests.py')
-rwxr-xr-xscripts/run_web_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/run_web_tests.py b/scripts/run_web_tests.py
index eb6375e..896b450 100755
--- a/scripts/run_web_tests.py
+++ b/scripts/run_web_tests.py
@@ -16,7 +16,7 @@ def load_fonts():
"""Load all web fonts."""
all_font_files = glob.glob('out/web/*.ttf')
all_fonts = [ttLib.TTFont(font) for font in all_font_files]
- assert len(all_font_files) == 12
+ assert len(all_font_files) == 18
return all_font_files, all_fonts