Changeset 238943 in webkit


Ignore:
Timestamp:
Dec 6, 2018 3:05:36 PM (5 years ago)
Author:
Jonathan Bedard
Message:

webkitpy: Ignore case when comparing device types (Follow-up fix)
https://bugs.webkit.org/show_bug.cgi?id=192409
<rdar://problem/46491558>

Unreviewed typo fix.

  • Scripts/webkitpy/xcode/device_type_unittest.py:

(DeviceTypeTest.test_comparison_lower_case):
(DeviceTypeTest.test_comparsion_lower_case): Deleted.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r238940 r238943  
     12018-12-06  Jonathan Bedard  <jbedard@apple.com>
     2
     3        webkitpy: Ignore case when comparing device types (Follow-up fix)
     4        https://bugs.webkit.org/show_bug.cgi?id=192409
     5        <rdar://problem/46491558>
     6
     7        Unreviewed typo fix.
     8
     9        * Scripts/webkitpy/xcode/device_type_unittest.py:
     10        (DeviceTypeTest.test_comparison_lower_case):
     11        (DeviceTypeTest.test_comparsion_lower_case): Deleted.
     12
    1132018-12-06  Jonathan Bedard  <jbedard@apple.com>
    214
  • trunk/Tools/Scripts/webkitpy/xcode/device_type_unittest.py

    r238906 r238943  
    145145        self.assertFalse(DeviceType.from_string('iPhone', Version(11)) in DeviceType.from_string('iPhone', Version(11, 1)))
    146146
    147     def test_comparsion_lower_case(self):
     147    def test_comparison_lower_case(self):
    148148        self.assertEqual(DeviceType.from_string('iphone X'), DeviceType.from_string('iPhone'))
    149149        self.assertEqual(DeviceType.from_string('iphone'), DeviceType.from_string('iPhone X'))
Note: See TracChangeset for help on using the changeset viewer.