From 4c718c12c2bcc115f31889a6a37623fd31c08d13 Mon Sep 17 00:00:00 2001 From: btowles Date: Fri, 15 Sep 2023 20:20:02 +0000 Subject: [PATCH] Fix imports --- tests/test_bookmarks.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/test_bookmarks.py b/tests/test_bookmarks.py index ff808c60..02c9471e 100644 --- a/tests/test_bookmarks.py +++ b/tests/test_bookmarks.py @@ -1,6 +1,7 @@ """ Test tap sets a bookmark and respects it for the next sync of a stream """ +import base import math import json from pathlib import Path @@ -334,7 +335,7 @@ def test_run(self): ) self.assertIn(expected_pk_value, sync_pk_values) else: - is_done = BaseTapTest.JIRA_CLIENT.get_status_category("TDL-24065") == 'done' + is_done = base.JIRA_CLIENT.get_status_category("TDL-24065") == 'done' assert_message = ("JIRA ticket has moved to done, remove the " "if stream != 'invoice_items' line above.") assert is_done == False, assert_message @@ -360,7 +361,7 @@ def test_run(self): if sync_record.get('id') == updated_pk_value] self.assertTrue(len(sync_records_metadata) == 1) - if BaseTapTest.JIRA_CLIENT.get_status_category("TDL-24065") == 'done': + if base.JIRA_CLIENT.get_status_category("TDL-24065") == 'done': assert_message = ("JIRA ticket has moved to done, uncomment the " "assertion below.") assert True == False, assert_message