File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,10 @@ install:
3030 # as commits are performed with the default user, it needs to be set for travis too
3131 - git config --global user.email "travis@ci.com"
3232 - git config --global user.name "Travis Runner"
33+
34+ # debugging
35+ - tree .git/logs
36+ - cat .git/logs/HEAD
3337script :
3438 - nosetests -v --with-coverage
3539after_success :
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ def test_options_are_passed_to_git(self):
125125
126126 def test_single_char_git_options_are_passed_to_git (self ):
127127 input_value = 'TestValue'
128- output_value = self .git (c = 'user.name={}' . format ( input_value ) ).config ('--get' , 'user.name' )
128+ output_value = self .git (c = 'user.name=%s' % input_value ).config ('--get' , 'user.name' )
129129 self .assertEquals (input_value , output_value )
130130
131131 def test_change_to_transform_kwargs_does_not_break_command_options (self ):
You can’t perform that action at this time.
0 commit comments