From 8018d68213a3959261445129f25abbf457a865f0 Mon Sep 17 00:00:00 2001 From: Octavia Squidington III Date: Tue, 21 Jan 2025 16:45:24 +0000 Subject: [PATCH] chore: auto-fix lint and format issues --- .../source-klaviyo/unit_tests/test_streams.py | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-klaviyo/unit_tests/test_streams.py b/airbyte-integrations/connectors/source-klaviyo/unit_tests/test_streams.py index cfe7da8fb12b..46288636358b 100644 --- a/airbyte-integrations/connectors/source-klaviyo/unit_tests/test_streams.py +++ b/airbyte-integrations/connectors/source-klaviyo/unit_tests/test_streams.py @@ -548,7 +548,10 @@ def test_stream_slices(self): {"updated_at": "2023-10-10T00:00:00+00:00"}, {"archived": False}, None, - {"filter": "and(greater-than(updated_at,2023-10-10T00:00:00+00:00),equals(messages.channel,'email'))", "sort": "updated_at"}, + { + "filter": "and(greater-than(updated_at,2023-10-10T00:00:00+00:00),equals(messages.channel,'email'))", + "sort": "updated_at", + }, ), ( {"archived": {"updated_at": "2023-10-10T00:00:00+00:00"}}, @@ -583,7 +586,11 @@ def test_stream_slices(self): {}, {"archived": True}, {"page[cursor]": "next_page_cursor"}, - {"filter": "and(equals(archived,true),equals(messages.channel,'email'))", "sort": "updated_at", "page[cursor]": "next_page_cursor"}, + { + "filter": "and(equals(archived,true),equals(messages.channel,'email'))", + "sort": "updated_at", + "page[cursor]": "next_page_cursor", + }, ), ( {}, @@ -595,7 +602,10 @@ def test_stream_slices(self): {"updated_at": "2023-10-10T00:00:00+00:00", "archived": {"updated_at": "2024-10-10T00:00:00+00:00"}}, {"archived": False}, None, - {"filter": "and(greater-than(updated_at,2023-10-10T00:00:00+00:00),equals(messages.channel,'email'))", "sort": "updated_at"}, + { + "filter": "and(greater-than(updated_at,2023-10-10T00:00:00+00:00),equals(messages.channel,'email'))", + "sort": "updated_at", + }, ), ( {"updated_at": "2023-10-10T00:00:00+00:00", "archived": {"updated_at": "2022-10-10T00:00:00+00:00"}},