From 52f72741743c0b5d37fef882a8dc4241220f8df5 Mon Sep 17 00:00:00 2001 From: Gal Nakash Date: Mon, 21 Aug 2023 17:49:07 +0300 Subject: [PATCH] packs/reco: fix test Signed-off-by: Gal Nakash --- .../GoogleDrive/Integrations/GoogleDrive/GoogleDrive_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Packs/GoogleDrive/Integrations/GoogleDrive/GoogleDrive_test.py b/Packs/GoogleDrive/Integrations/GoogleDrive/GoogleDrive_test.py index f97f6ec87ff2..9904607848e8 100644 --- a/Packs/GoogleDrive/Integrations/GoogleDrive/GoogleDrive_test.py +++ b/Packs/GoogleDrive/Integrations/GoogleDrive/GoogleDrive_test.py @@ -791,8 +791,8 @@ def test_list_labels(self, mocker_http_request, gsuite_client): result = get_labels_command(gsuite_client, {}) - assert 'GoogleDrive.Drive' in result.outputs - assert len(result.outputs['GoogleDrive.Drive']['DriveLabels']) == 1 + assert 'GoogleDrive.Labels' in result.outputs + assert len(result.outputs['GoogleDrive.Labels']['labels']) == 2 @patch(MOCKER_HTTP_METHOD) def test_modify_labels_command(self, mocker_http_request, gsuite_client):