File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -221,7 +221,7 @@ def blob(type = :index)
221
221
# temporarily public
222
222
def ignore_case?
223
223
return @_ignore_case if defined? ( @_ignore_case )
224
- @_ignore_case = @base . config ( 'core.ignorecase ' ) == 'true'
224
+ @_ignore_case = @base . config ( 'core.ignoreCase ' ) == 'true'
225
225
rescue Git ::FailedError
226
226
@_ignore_case = false
227
227
end
Original file line number Diff line number Diff line change @@ -126,8 +126,8 @@ def test_changed_boolean
126
126
assert ( !git . status . changed? ( 'scott/TEXT.txt' ) )
127
127
128
128
move_file ( 'test_dot_files_status/scott/text.txt' , 'test_dot_files_status/scott/TEXT.txt' )
129
- assert ( git . status . changed? ( 'scott/text .txt' ) )
130
- assert ( !git . status . changed? ( 'scott/TEXT .txt' ) )
129
+ assert ( git . status . changed? ( 'scott/TEXT .txt' ) )
130
+ assert ( !git . status . changed? ( 'scott/text .txt' ) )
131
131
end
132
132
end
133
133
You can’t perform that action at this time.
0 commit comments