Skip to content

Commit bc55dde

Browse files
committed
fix line length
1 parent 4b8a359 commit bc55dde

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

spec/completely/installer_spec.rb

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
it 'returns the command without sudo' do
2525
allow(subject).to receive(:root_user?).and_return true
2626

27-
expect(subject.command).to eq %w[cp completions.bash /usr/share/bash-completion/completions/completely-test]
27+
expect(subject.command)
28+
.to eq %w[cp completions.bash /usr/share/bash-completion/completions/completely-test]
2829
end
2930
end
3031
end
@@ -37,7 +38,8 @@
3738

3839
describe '#target_path' do
3940
it 'returns the first matching path' do
40-
expect(subject.target_path).to eq '/usr/share/bash-completion/completions/completely-test'
41+
expect(subject.target_path)
42+
.to eq '/usr/share/bash-completion/completions/completely-test'
4143
end
4244
end
4345

0 commit comments

Comments
 (0)