Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
bhtowles committed Sep 15, 2023
1 parent 7b58fce commit 4c718c1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/test_bookmarks.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 4c718c1

Please sign in to comment.