Skip to content

Commit

Permalink
Previous commit was missing unit test changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Kegel authored and djmitche committed Apr 27, 2014
1 parent c039539 commit 3b3eafc
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions master/buildbot/test/unit/test_steps_source_git.py
Expand Up @@ -200,6 +200,9 @@ def test_mode_full_clean_patch(self):
slavedest='.buildbot-patched', workdir='wkdir',
mode=None))
+ 0,
ExpectShell(workdir='wkdir',
command=['git', 'update-index', '--refresh'])
+ 0,
ExpectShell(workdir='wkdir',
command=['git', 'apply', '--index', '-p', '1'],
initialStdin='patch')
Expand Down Expand Up @@ -256,6 +259,9 @@ def test_mode_full_clean_patch_fail(self):
slavedest='.buildbot-patched', workdir='wkdir',
mode=None))
+ 0,
ExpectShell(workdir='wkdir',
command=['git', 'update-index', '--refresh'])
+ 0,
ExpectShell(workdir='wkdir',
command=['git', 'apply', '--index', '-p', '1'],
initialStdin='patch')
Expand Down

0 comments on commit 3b3eafc

Please sign in to comment.