From 2b2482b42492de157229b900a85e9da589c5ab67 Mon Sep 17 00:00:00 2001 From: Lucas Di Pentima Date: Tue, 4 Jun 2019 15:23:47 -0300 Subject: [PATCH] 15306: Don't check for empty responses now that we use a filter. Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima --- services/api/test/integration/collections_api_test.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/services/api/test/integration/collections_api_test.rb b/services/api/test/integration/collections_api_test.rb index a5862aaec5..a004ae910f 100644 --- a/services/api/test/integration/collections_api_test.rb +++ b/services/api/test/integration/collections_api_test.rb @@ -289,7 +289,6 @@ class CollectionsApiTest < ActionDispatch::IntegrationTest headers: auth(:active)) assert_response :success assert_not_nil json_response['items'] - refute_empty json_response['items'] assert_equal truthiness, json_response['items'].collect {|c| c['uuid']}.include?(expired_col.uuid) end end @@ -315,7 +314,6 @@ class CollectionsApiTest < ActionDispatch::IntegrationTest }.update(auth(:active)) assert_response :success assert_not_nil json_response['items'] - refute_empty json_response['items'] assert_equal truthiness, json_response['items'].collect {|c| c['uuid']}.include?(expired_col.uuid) end end -- 2.39.5