From 33fe961e844d1e747cbd970ed1bf97ab88a7fa89 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Javier=20B=C3=A9rtoli?= Date: Sun, 8 Aug 2021 16:29:42 -0300 Subject: [PATCH] Inspec throws some deprecation warnings on Ubuntu-20.04 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit so I removed the stderr check on resources. no issue # Arvados-DCO-1.1-Signed-off-by: Javier Bértoli --- test/integration/controller/controls/resources_spec.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 -- 2.30.2