Skip to content

Commit 4a7d6ed

Browse files
committed
[DEBUGGING] adjust 2
1 parent fd45976 commit 4a7d6ed

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/git/status.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ def blob(type = :index)
221221
# temporarily public
222222
def ignore_case?
223223
return @_ignore_case if defined?(@_ignore_case)
224-
@_ignore_case = @base.config('core.ignorecase') == 'true'
224+
@_ignore_case = @base.config('core.ignoreCase') == 'true'
225225
rescue Git::FailedError
226226
@_ignore_case = false
227227
end

tests/units/test_status.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,8 @@ def test_changed_boolean
126126
assert(!git.status.changed?('scott/TEXT.txt'))
127127

128128
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'))
131131
end
132132
end
133133

0 commit comments

Comments
 (0)