Changeset 58364 in webkit


Ignore:
Timestamp:
Apr 27, 2010 6:15:29 PM (14 years ago)
Author:
jamesr@google.com
Message:

2010-04-27 James Robinson <jamesr@chromium.org>

Reviewed by David Levin.

Fix a typo in chromium.py that causes NRWT to fail in --verbose
mode in a Chromium checkout.
https://bugs.webkit.org/show_bug.cgi?id=38234

  • Scripts/webkitpy/layout_tests/port/chromium.py:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r58358 r58364  
     12010-04-27  James Robinson  <jamesr@chromium.org>
     2
     3        Reviewed by David Levin.
     4
     5        Fix a typo in chromium.py that causes NRWT to fail in --verbose
     6        mode in a Chromium checkout.
     7        https://bugs.webkit.org/show_bug.cgi?id=38234
     8
     9        * Scripts/webkitpy/layout_tests/port/chromium.py:
     10
    1112010-04-27  Darin Fisher  <darin@chromium.org>
    212
  • trunk/WebKitTools/Scripts/webkitpy/layout_tests/port/chromium.py

    r58314 r58364  
    183183        """Starts a new Driver and returns a handle to it."""
    184184        if self._options.use_drt:
    185             return webkit.WebKitDriver(self, image_path, options, exectuive=self._executive)
    186         return ChromiumDriver(self, image_path, options, exectuive=self._executive)
     185            return webkit.WebKitDriver(self, image_path, options, executive=self._executive)
     186        return ChromiumDriver(self, image_path, options, executive=self._executive)
    187187
    188188    def start_helper(self):
Note: See TracChangeset for help on using the changeset viewer.