Skip to content

Commit

Permalink
Fix acceptance tests checking for the wrong version
Browse files Browse the repository at this point in the history
  • Loading branch information
oranenj committed Apr 15, 2021
1 parent 6ba0a98 commit 5897eef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion spec/acceptance/default_parameters_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class { 'jira::facts': }
end

describe command('wget -q --tries=24 --retry-connrefused --read-timeout=10 -O- localhost:8080') do
its(:stdout) { is_expected.to include('8.13.4') }
its(:stdout) { is_expected.to include('8.13.5') }
end

describe 'shutdown' do
Expand Down
4 changes: 2 additions & 2 deletions spec/acceptance/mysql_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,11 @@ class { 'jira::facts': }
end

describe command('wget -q --tries=24 --retry-connrefused --no-check-certificate --read-timeout=10 -O- localhost:8081') do
its(:stdout) { is_expected.to include('8.13.4') }
its(:stdout) { is_expected.to include('8.13.5') }
end

describe command('wget -q --tries=24 --retry-connrefused --no-check-certificate --read-timeout=10 -O- https://localhost:8443') do
its(:stdout) { is_expected.to include('8.13.4') }
its(:stdout) { is_expected.to include('8.13.5') }
end

describe 'shutdown' do
Expand Down

0 comments on commit 5897eef

Please sign in to comment.