summaryrefslogtreecommitdiff
path: root/scripts/run_web_tests.py
diff options
context:
space:
mode:
authorRoozbeh Pournader <roozbeh@google.com>2015-01-13 10:00:04 -0800
committerJames Godfrey-Kittle <jamesgk@google.com>2015-04-16 12:16:25 -0700
commitd5d62b219ca099784b732927035e37a2470c5c04 (patch)
treec662d49ffd429bf3d9c24dd92395f55714afe4bf /scripts/run_web_tests.py
parent29257870e8eb50be42c0e36f70c88817c0a9ce50 (diff)
Fix name table overrides for condensed fonts.
Fixes issue 104 and issue 105.
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 fbeee0a..3bcfd97 100755
--- a/scripts/run_web_tests.py
+++ b/scripts/run_web_tests.py
@@ -37,7 +37,7 @@ class TestNames(common_tests.TestNames):
def test_postscript_name(self):
"""Tests the postscript name."""
for records in self.names:
- expected_name = records[1] + '-' + records[2].replace(' ', '')
+ expected_name = (records[1] + '-' + records[2]).replace(' ', '')
self.assertEqual(records[6], expected_name)