Commit 4806a5e4 authored by Robert Speicher's avatar Robert Speicher

Merge branch 'pl-ruby-kwargs-warnings-spec-git-diff' into 'master'

Fix kwargs deprecation warnings in git diff specs

See merge request gitlab-org/gitlab!47541
parents fe7dcb0a 5f9b3ea7
...@@ -301,19 +301,19 @@ EOT ...@@ -301,19 +301,19 @@ EOT
describe '#too_large?' do describe '#too_large?' do
it 'returns true for a diff that is too large' do it 'returns true for a diff that is too large' do
diff = described_class.new(diff: 'a' * 204800) diff = described_class.new({ diff: 'a' * 204800 })
expect(diff.too_large?).to eq(true) expect(diff.too_large?).to eq(true)
end end
it 'returns false for a diff that is small enough' do it 'returns false for a diff that is small enough' do
diff = described_class.new(diff: 'a') diff = described_class.new({ diff: 'a' })
expect(diff.too_large?).to eq(false) expect(diff.too_large?).to eq(false)
end end
it 'returns true for a diff that was explicitly marked as being too large' do it 'returns true for a diff that was explicitly marked as being too large' do
diff = described_class.new(diff: 'a') diff = described_class.new({ diff: 'a' })
diff.too_large! diff.too_large!
...@@ -323,19 +323,19 @@ EOT ...@@ -323,19 +323,19 @@ EOT
describe '#collapsed?' do describe '#collapsed?' do
it 'returns false by default even on quite big diff' do it 'returns false by default even on quite big diff' do
diff = described_class.new(diff: 'a' * 20480) diff = described_class.new({ diff: 'a' * 20480 })
expect(diff).not_to be_collapsed expect(diff).not_to be_collapsed
end end
it 'returns false by default for a diff that is small enough' do it 'returns false by default for a diff that is small enough' do
diff = described_class.new(diff: 'a') diff = described_class.new({ diff: 'a' })
expect(diff).not_to be_collapsed expect(diff).not_to be_collapsed
end end
it 'returns true for a diff that was explicitly marked as being collapsed' do it 'returns true for a diff that was explicitly marked as being collapsed' do
diff = described_class.new(diff: 'a') diff = described_class.new({ diff: 'a' })
diff.collapse! diff.collapse!
...@@ -359,7 +359,7 @@ EOT ...@@ -359,7 +359,7 @@ EOT
describe '#collapse!' do describe '#collapse!' do
it 'prunes the diff' do it 'prunes the diff' do
diff = described_class.new(diff: "foo\nbar") diff = described_class.new({ diff: "foo\nbar" })
diff.collapse! diff.collapse!
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment