summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
authordpranke@google.com <dpranke@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-21 23:48:56 +0000
committerdpranke@google.com <dpranke@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-21 23:48:56 +0000
commit84e9ac5d6d34a24af7d75e7b7f77c31655c79365 (patch)
treeff07859568ff927dda08b9594c6cb913285d81eb /webkit
parent6be95547c12e20b386db60f94fc64e0ebc350fcd (diff)
downloadchromium_src-84e9ac5d6d34a24af7d75e7b7f77c31655c79365.zip
chromium_src-84e9ac5d6d34a24af7d75e7b7f77c31655c79365.tar.gz
chromium_src-84e9ac5d6d34a24af7d75e7b7f77c31655c79365.tar.bz2
Fix typo in rebaseline.py that broke the script
BUG=none R=jparent@chromium.org TEST=none Review URL: http://codereview.chromium.org/174282 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24045 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r--webkit/tools/layout_tests/rebaseline.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/tools/layout_tests/rebaseline.py b/webkit/tools/layout_tests/rebaseline.py
index f49c072..0ec3126 100644
--- a/webkit/tools/layout_tests/rebaseline.py
+++ b/webkit/tools/layout_tests/rebaseline.py
@@ -766,7 +766,7 @@ def main():
sys.exit(1)
platforms = [p.strip().lower() for p in options.platforms.split(',')]
for platform in platforms:
- if not TestExpectationsFile.ToTestPlatformName(platform):
+ if not platform in test_expectations.TestExpectationsFile.PLATFORMS:
logging.error('Invalid platform platform: "%s"' % (platform))
sys.exit(1)