| Index: third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl_unittest.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl_unittest.py
|
| index e31cb070ef9aeb11a26b9ff51ba51a60f97430a8..6c9b3d7a02ced59cc1506051eac70b6594be7216 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl_unittest.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl_unittest.py
|
| @@ -318,8 +318,8 @@ class RebaselineCLTest(BaseTestCase, LoggingTestCase):
|
| ])
|
|
|
| def test_bails_when_there_are_unstaged_baselines(self):
|
| - scm = self.tool.scm()
|
| - scm.unstaged_changes = lambda: {'third_party/WebKit/LayoutTests/my-test-expected.txt': '?'}
|
| + git = self.tool.git()
|
| + git.unstaged_changes = lambda: {'third_party/WebKit/LayoutTests/my-test-expected.txt': '?'}
|
| return_code = self.command.execute(self.command_options(issue=11112222), [], self.tool)
|
| self.assertEqual(return_code, 1)
|
| self.assertLog([
|
|
|