From: Javier Bértoli Date: Sun, 8 Aug 2021 19:29:42 +0000 (-0300) Subject: Inspec throws some deprecation warnings on Ubuntu-20.04 X-Git-Url: https://git.arvados.org/arvados-formula.git/commitdiff_plain/33fe961e844d1e747cbd970ed1bf97ab88a7fa89 Inspec throws some deprecation warnings on Ubuntu-20.04 so I removed the stderr check on resources. no issue # Arvados-DCO-1.1-Signed-off-by: Javier Bértoli --- diff --git a/test/integration/controller/controls/resources_spec.rb b/test/integration/controller/controls/resources_spec.rb index 8d21752..47faa3f 100644 --- a/test/integration/controller/controls/resources_spec.rb +++ b/test/integration/controller/controls/resources_spec.rb @@ -1,3 +1,6 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: Apache-2.0 # frozen_string_literal: true query_virtual_machines = <<~TEST_VM_CMD @@ -29,7 +32,6 @@ control 'arvados api resources' do end its('stdout') { should match(/"uuid":"fixme-2x53u-[a-z0-9_]{15}"/) } its('stdout') { should match(/"hostname":"#{vm}"/) } - its('stderr') { should eq '' } its('exit_status') { should eq 0 } end @@ -42,7 +44,6 @@ control 'arvados api resources' do %r{"GET /arvados/v1/virtual_machines/fixme-2x53u-[a-z0-9]{15}/logins"} ) end - its('stderr') { should eq '' } its('exit_status') { should eq 0 } end end