From d4635b9a2e4cc2a85ef88e134489de5610c082ca Mon Sep 17 00:00:00 2001 From: Zach Wolfenbarger Date: Tue, 28 May 2024 19:41:58 -0500 Subject: [PATCH] flake --- .../tests/batch_aggregation/test_batch_aggregation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panoptes_aggregation/tests/batch_aggregation/test_batch_aggregation.py b/panoptes_aggregation/tests/batch_aggregation/test_batch_aggregation.py index 67f6dd7f..fab09ac1 100644 --- a/panoptes_aggregation/tests/batch_aggregation/test_batch_aggregation.py +++ b/panoptes_aggregation/tests/batch_aggregation/test_batch_aggregation.py @@ -112,7 +112,7 @@ def test_upload_file_to_storage(self): def test_create_run_in_panoptes(self, mock_poster): ba = batch_agg.BatchAggregator(1, 10, 100) ba.create_run_in_panoptes() - mock_poster.assert_called_with('/aggregations/', json={'aggregations': {'uuid': ba.id, 'status': 'completed', 'links': {'workflow': 10, 'user': 100 }}}) + mock_poster.assert_called_with('/aggregations/', json={'aggregations': {'uuid': ba.id, 'status': 'completed', 'links': {'workflow': 10, 'user': 100}}}) @patch("panoptes_aggregation.batch_aggregation.BlobServiceClient") def test_connect_blob_storage(self, mock_client):