summaryrefslogtreecommitdiff
path: root/scripts/run_exhaustive_tests.py
diff options
context:
space:
mode:
authorRoozbeh Pournader <roozbeh@google.com>2015-04-24 09:50:11 -0700
committerRoozbeh Pournader <roozbeh@google.com>2015-04-24 09:50:11 -0700
commitc79cb0093a44b0f21d0c71319c028e3a308e1d35 (patch)
tree2b61df8ce30667f0badc860a9916e4ece686bdfd /scripts/run_exhaustive_tests.py
parentee1366b5f3c83348f13535a063216bf6854c49d9 (diff)
Rename get_shapes to get_glyphs in layout.py.
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 1736cec..e7425ad 100755
--- a/scripts/run_exhaustive_tests.py
+++ b/scripts/run_exhaustive_tests.py
@@ -102,8 +102,8 @@ class TestSoftDottedChars(unittest.TestCase):
print 'Testing %s combinations' % base_letter.encode('UTF-8')
for mark in self.marks_to_test:
mark = unichr(mark)
- letter_only = layout.get_shapes(base_letter, font)
- combination = layout.get_shapes(base_letter + mark, font)
+ letter_only = layout.get_glyphs(base_letter, font)
+ combination = layout.get_glyphs(base_letter + mark, font)
self.assertNotEqual(combination[0], letter_only[0],
"The sequence <%04X, %04X> doesn't lose its dot, "
"but it should" % (ord(base_letter), ord(mark)))