summaryrefslogtreecommitdiff
path: root/scripts/coverage_test.py
diff options
context:
space:
mode:
authorJames Godfrey-Kittle <jamesgk@google.com>2015-04-14 20:44:48 -0700
committerJames Godfrey-Kittle <jamesgk@google.com>2015-04-16 12:16:35 -0700
commit1f220aa82142f35e7a44c67c9359135fe77d58b6 (patch)
treea9e47853e7cbb1f82dc200441cb766eab0efb6d7 /scripts/coverage_test.py
parent402408f2ef97158df1d35f7cc6f72817cea3b62e (diff)
Move v2 output from out/v2/ to out/.
Rollback changes from ra92a8e3146bd.
Diffstat (limited to 'scripts/coverage_test.py')
-rwxr-xr-xscripts/coverage_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/coverage_test.py b/scripts/coverage_test.py
index 82cf936..bd4275f 100755
--- a/scripts/coverage_test.py
+++ b/scripts/coverage_test.py
@@ -38,8 +38,8 @@ from nototools import unicode_data
def load_fonts():
"""Load all fonts built for Android."""
- all_fonts = (glob.glob('out/v2/RobotoTTF/*.ttf')
- + glob.glob('out/v2/RobotoCondensedTTF/*.ttf'))
+ all_fonts = (glob.glob('out/RobotoTTF/*.ttf')
+ + glob.glob('out/RobotoCondensedTTF/*.ttf'))
all_fonts = [ttLib.TTFont(font) for font in all_fonts]
return all_fonts