diff options
author | ojan@google.com <ojan@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-02 18:46:30 +0000 |
---|---|---|
committer | ojan@google.com <ojan@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-02 18:46:30 +0000 |
commit | 748d944eb7136d10469ca894c2ba3a7b0e016424 (patch) | |
tree | 5d87ff022b9b588d9c1c31974250faf2f88c1135 | |
parent | e73f3d15ef7b248f6c04f571be59aa8c816b97d8 (diff) | |
download | chromium_src-748d944eb7136d10469ca894c2ba3a7b0e016424.zip chromium_src-748d944eb7136d10469ca894c2ba3a7b0e016424.tar.gz chromium_src-748d944eb7136d10469ca894c2ba3a7b0e016424.tar.bz2 |
Fix typo from previous commit. Doh.
Review URL: http://codereview.chromium.org/184020
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25211 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | webkit/tools/layout_tests/flakiness_dashboard.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/webkit/tools/layout_tests/flakiness_dashboard.html b/webkit/tools/layout_tests/flakiness_dashboard.html index b4bc00e..ebfc82e 100644 --- a/webkit/tools/layout_tests/flakiness_dashboard.html +++ b/webkit/tools/layout_tests/flakiness_dashboard.html @@ -686,8 +686,9 @@ */ function shouldHideTest(testResult) { return !currentState.tests && - (test.isWontFix && !currentState.showWontFix || - test.meetsExpectations && !currentState.showCorrectExpectations); + (testResult.isWontFix && !currentState.showWontFix || + testResult.meetsExpectations && + !currentState.showCorrectExpectations); } function getHTMLForSingleTestRow(test, opt_builder) { |