Changeset 52969 in webkit


Ignore:
Timestamp:
Jan 7, 2010 9:12:45 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-01-07 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Fix some test-webkitpy expectations
https://bugs.webkit.org/show_bug.cgi?id=33345

I forgot to change these when I added the CheckStyle step.

  • Scripts/webkitpy/commands/upload_unittest.py:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r52968 r52969  
     12010-01-07  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Fix some test-webkitpy expectations
     6        https://bugs.webkit.org/show_bug.cgi?id=33345
     7
     8        I forgot to change these when I added the CheckStyle step.
     9
     10        * Scripts/webkitpy/commands/upload_unittest.py:
     11
    1122010-01-07  Adam Barth  <abarth@webkit.org>
    213
  • trunk/WebKitTools/Scripts/webkitpy/commands/upload_unittest.py

    r52907 r52969  
    5353        self.assert_execute_outputs(ObsoleteAttachments(), [42], expected_stderr=expected_stderr)
    5454
    55     def test_post_diff(self):
    56         expected_stderr = "Obsoleting 2 old patches on bug 42\n"
     55    def test_post(self):
     56        expected_stderr = "Running check-webkit-style\nObsoleting 2 old patches on bug 42\n"
    5757        self.assert_execute_outputs(Post(), [42], expected_stderr=expected_stderr)
    5858
     
    6060        self.assert_execute_outputs(Prepare(), [42])
    6161
    62     def test_prepare_diff(self):
     62    def test_prepare(self):
    6363        self.assert_execute_outputs(Prepare(), [])
    6464
    65     def test_submit_patch(self):
    66         expected_stderr = "Obsoleting 2 old patches on bug 42\n"
     65    def test_upload(self):
     66        expected_stderr = "Running check-webkit-style\nObsoleting 2 old patches on bug 42\n"
    6767        self.assert_execute_outputs(Upload(), [42], expected_stderr=expected_stderr)
    6868
Note: See TracChangeset for help on using the changeset viewer.