From 91aef53274950887f065e353f14b93b91bd7cf98 Mon Sep 17 00:00:00 2001
From: btowles <btowles@stitchdata.com>
Date: Wed, 1 May 2024 19:20:27 +0000
Subject: [PATCH] Fix if elif else bug

---
 tests/test_interrupted_sync.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/test_interrupted_sync.py b/tests/test_interrupted_sync.py
index 741c216..d34aff5 100644
--- a/tests/test_interrupted_sync.py
+++ b/tests/test_interrupted_sync.py
@@ -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)