| Index: tests/project_test.py
|
| diff --git a/tests/project_test.py b/tests/project_test.py
|
| index a559781df29967f3dbb4b78c1fe133b22ab72e18..f885fb1b4c7f42b38400e5c904adb4b242ec56b2 100755
|
| --- a/tests/project_test.py
|
| +++ b/tests/project_test.py
|
| @@ -435,7 +435,7 @@ class ChromiumStateLoad(TestCase):
|
| why_not, rietveld_calls)
|
|
|
| def test_tbr(self):
|
| - self.time = map(lambda x: float(x*35), range(15))
|
| + self.time = map(lambda x: float(x*35), range(16))
|
| self.urlrequests = [
|
| ('https://chromium-status.appspot.com/allstatus?format=json&endTime=85',
|
| # Cheap hack here.
|
| @@ -486,6 +486,7 @@ class ChromiumStateLoad(TestCase):
|
| "{u'chromium_presubmit': ['presubmit']})",
|
| 'close_issue(31337)',
|
| "update_description(31337, u'foo\\nTBR=')",
|
| + "set_flag(31337, 1, 'commit', False)",
|
| "add_comment(31337, 'Change committed as 125')",
|
| ])
|
| self.context.checkout.check_calls([
|
| @@ -497,7 +498,7 @@ class ChromiumStateLoad(TestCase):
|
| "u'user@example.com')",
|
| ])
|
| self.context.status.check_names(['initial', 'why not', 'why not',
|
| - 'why not', 'commit'])
|
| + 'why not', 'commit', 'abort'])
|
|
|
|
|
|
|
|
|