Ubuntu: Check TCP port in acceptance tests

Now we deploy mistral in both CentOS and Ubuntu thus we can validate
the tcp port in Ubuntu as well.

Change-Id: I565ad3dabb621f536038447bd01ccea8a0adf146
This commit is contained in:
Takashi Kajinami 2023-03-22 16:40:15 +09:00
parent 2ba57c62b9
commit 60284206c8
1 changed files with 2 additions and 6 deletions

View File

@ -22,12 +22,8 @@ describe 'basic mistral' do
apply_manifest(pp, :catch_changes => true)
end
if os[:family].casecmp('RedHat') == 0
describe port(8989) do
it { is_expected.to be_listening }
end
describe port(8989) do
it { is_expected.to be_listening }
end
end
end