Changeset 382


Ignore:
Timestamp:
05-03-09 21:50:00 (4 years ago)
Author:
thomas
Message:

cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/moap/test/test_vcs_git_svn.py

    r381 r382  
    1414class GitSvnTestCase(test_vcs_svn.SVNTestCase): 
    1515    # git svn --version just errors about not having a git repo 
    16     # TODO: this might break on non-Debian machines. 
    1716    if not os.path.isfile('/usr/bin/git-svn') \ 
    1817        and not os.path.isfile('/usr/lib/git-core/git-svn'): 
     
    2827        oldPath = os.getcwd() 
    2928        os.chdir(self.livedir) 
    30         self.liveWriteFile("lets-create-a-head-to-make-git-happy", "I lost my HEAD") 
    31         (status, output) = commands.getstatusoutput("git add lets-create-a-head-to-make-git-happy") 
     29        self.liveWriteFile("lets-create-a-head-to-make-git-happy", 
     30            "I lost my HEAD") 
     31        (status, output) = commands.getstatusoutput( 
     32            "git add lets-create-a-head-to-make-git-happy") 
    3233        self.failIf(status) 
    33         (status, output) = commands.getstatusoutput("git commit -m first-commit") 
     34        (status, output) = commands.getstatusoutput( 
     35            "git commit -m first-commit") 
    3436        self.failIf(status) 
    3537        os.chdir(oldPath) 
     
    98100 
    99101        self.assertEquals(v.diff(self.livedir), "") 
    100  
Note: See TracChangeset for help on using the changeset viewer.