diff --git a/tests/test_interrupted_sync.py b/tests/test_interrupted_sync.py index 57a2685..508c7cc 100644 --- a/tests/test_interrupted_sync.py +++ b/tests/test_interrupted_sync.py @@ -200,12 +200,9 @@ 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 transactions stream has equal bookmarks, orders stream has shown both - # equal and greater than bookmark behavior, confirm this behavior is correct - 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) - if stream == 'orders': - self.assertGreaterEqual(resuming_bookmark_value, first_bookmark_value) else: self.assertGreater(resuming_bookmark_value, first_bookmark_value)