summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordpranke@google.com <dpranke@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-14 22:21:03 +0000
committerdpranke@google.com <dpranke@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-14 22:21:03 +0000
commit1c4d838fec4d0200c2afb7cb1995ac252fa1bed6 (patch)
tree721c167f3e311537651ee2408eee53248b00649d
parentfcfd12f4247d8c5cb57223ee9e5f553c7f233c79 (diff)
downloadchromium_src-1c4d838fec4d0200c2afb7cb1995ac252fa1bed6.zip
chromium_src-1c4d838fec4d0200c2afb7cb1995ac252fa1bed6.tar.gz
chromium_src-1c4d838fec4d0200c2afb7cb1995ac252fa1bed6.tar.bz2
fix --lint-test-files
BUG=none R=tony@chromium.org TEST=none Review URL: http://codereview.chromium.org/170012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23473 0039d316-1c4b-4281-b951-d872f2087c98
-rwxr-xr-xwebkit/tools/layout_tests/run_webkit_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/tools/layout_tests/run_webkit_tests.py b/webkit/tools/layout_tests/run_webkit_tests.py
index 730a9b0..2dad574 100755
--- a/webkit/tools/layout_tests/run_webkit_tests.py
+++ b/webkit/tools/layout_tests/run_webkit_tests.py
@@ -118,7 +118,7 @@ class TestRunner:
if options.lint_test_files:
# Creating the expecations for each platform/target pair does all the
# test list parsing and ensures it's correct syntax(e.g. no dupes).
- for platform in TestExpectationsFile.PLATFORMS:
+ for platform in test_expectations.TestExpectationsFile.PLATFORMS:
self._ParseExpectations(platform, is_debug_mode=True)
self._ParseExpectations(platform, is_debug_mode=False)
else: