Skip to content

Commit

Permalink
Fix if elif else bug
Browse files Browse the repository at this point in the history
  • Loading branch information
bhtowles committed May 1, 2024
1 parent 4b44bd5 commit 91aef53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_interrupted_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def test_run(self):
# and greater than bookmark behavior, confirm if this is correct
if stream == 'transactions':
self.assertEqual(resuming_bookmark_value, first_bookmark_value)
if stream == 'orders':
elif stream == 'orders':
self.assertGreaterEqual(resuming_bookmark_value, first_bookmark_value)
else:
self.assertGreater(resuming_bookmark_value, first_bookmark_value)
Expand Down

0 comments on commit 91aef53

Please sign in to comment.