Skip to content

Commit 6aece7e

Browse files
committed
fix expected command
1 parent 2db549d commit 6aece7e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/defines/pip_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
context 'adds proxy to install command if proxy set' do
6969
let(:params) { { proxy: 'http://my.proxy:3128' } }
7070

71-
it { is_expected.to contain_exec('pip_install_rpyc').with_command('pip --log /tmp/pip.log install --proxy=http://my.proxy:3128 rpyc') }
71+
it { is_expected.to contain_exec('pip_install_rpyc').with_command('pip --log /tmp/pip.log install --proxy=http://my.proxy:3128 rpyc') }
7272
end
7373
end
7474

@@ -81,7 +81,7 @@
8181
context 'adds index to install command if index set' do
8282
let(:params) { { index: 'http://www.example.com/simple/' } }
8383

84-
it { is_expected.to contain_exec('pip_install_rpyc').with_command('pip --log /tmp/pip.log install --index-url=http://www.example.com/simple/ rpyc') }
84+
it { is_expected.to contain_exec('pip_install_rpyc').with_command('pip --log /tmp/pip.log install --index-url=http://www.example.com/simple/ rpyc') }
8585
end
8686
end
8787

0 commit comments

Comments
 (0)