X-Git-Url: https://git.arvados.org/arvados-formula.git/blobdiff_plain/fd654a4138340c1ddb0dcc5a406ede4b7c62b13f..4bf9501:/test/integration/controller/controls/services_spec.rb diff --git a/test/integration/controller/controls/services_spec.rb b/test/integration/controller/controls/services_spec.rb index abee521..3b24532 100644 --- a/test/integration/controller/controls/services_spec.rb +++ b/test/integration/controller/controls/services_spec.rb @@ -4,12 +4,13 @@ control 'arvados controller service' do impact 0.5 title 'should be running and enabled' - describe service('keep-web') do + describe service('arvados-controller') do it { should be_enabled } it { should be_running } end - describe port(9002) do + describe port(8003) do it { should be_listening } - its('processes') { should include 'keep-web' } + # The undelying tools inspec uses to get the process truncates their names + its('processes') { should include 'arvados-control' } end end