Skip to content

Commit 7be51a5

Browse files
committed
Fix tests
1 parent 76ce388 commit 7be51a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/loops/cli_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
it 'should load config from config/loops.yml by default' do
3737
cli = Loops::CLI.parse(@args)
38-
expect(cli.engine.global_config['pid_file']).to eq('/var/run/superloops.pid')
38+
expect(cli.engine.global_config['pid_file']).to eq('/tmp/superloops.pid')
3939
end
4040

4141
it 'should load config from file specified' do
@@ -55,7 +55,7 @@
5555

5656
it 'should use pid file from global config section' do
5757
Loops::CLI.parse(@args)
58-
expect(Loops.pid_file).to eq(Pathname.new('/var/run/superloops.pid'))
58+
expect(Loops.pid_file).to eq(Pathname.new('/tmp/superloops.pid'))
5959
end
6060

6161
it 'should absolutize relative pid file path' do

0 commit comments

Comments
 (0)