Skip to content

Commit 05b299e

Browse files
sjer-akamaiCopilot
andcommitted
Update test/unit/objects/monitor_test.py
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 3b13cec commit 05b299e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/unit/objects/monitor_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -473,10 +473,10 @@ def test_update_stream_destinations(self):
473473
stream = self.client.load(LogsStream, 1)
474474

475475
with self.mock_put({}) as m:
476-
result = stream.update_destinations([1, 2, 3])
476+
result = stream.update_destinations([1])
477477

478478
self.assertEqual(m.call_url, "/monitor/streams/1")
479-
self.assertEqual(m.call_data["destinations"], [1, 2, 3])
479+
self.assertEqual(m.call_data["destinations"], [1])
480480
self.assertTrue(result)
481481

482482
def test_fail_update_stream_destinations_when_no_destination_ids_passed(self):

0 commit comments

Comments
 (0)