Skip to content

Commit

Permalink
Merge branch 'tope/klaviyo/upgrade-2024-10-15' of https://github.com/…
Browse files Browse the repository at this point in the history
…airbytehq/airbyte into tope/klaviyo/upgrade-2024-10-15
  • Loading branch information
topefolorunso committed Jan 21, 2025
2 parents eadb0b7 + 3806d47 commit 276fccd
Showing 1 changed file with 13 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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"}},
Expand Down Expand Up @@ -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",
},
),
(
{},
Expand All @@ -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"}},
Expand Down

0 comments on commit 276fccd

Please sign in to comment.