From d04ccd8e5d2d1ed725c555b8b0ab67d348b7d341 Mon Sep 17 00:00:00 2001 From: btowles Date: Wed, 20 Mar 2024 17:56:49 +0000 Subject: [PATCH] Update interrupted sync orders stream Mar-2024 --- tests/test_interrupted_sync.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_interrupted_sync.py b/tests/test_interrupted_sync.py index aadff66..508c7cc 100644 --- a/tests/test_interrupted_sync.py +++ b/tests/test_interrupted_sync.py @@ -200,8 +200,8 @@ def test_run(self): # This is the expected behaviour for shopify as they are using date windowing # TDL-17096 : Resuming bookmark value is getting assigned from execution time # rather than the actual bookmark time for some streams. - # TODO this is not the case for the transactions stream, they are equal. - if stream == 'transactions': + # TODO orders and transactions streams are equal, confirm this behavior is correct + if stream == 'transactions' or stream == 'orders': self.assertEqual(resuming_bookmark_value, first_bookmark_value) else: self.assertGreater(resuming_bookmark_value, first_bookmark_value)