Skip to content

Commit

Permalink
Update connection name
Browse files Browse the repository at this point in the history
  • Loading branch information
prijendev committed Jan 8, 2025
1 parent 37033c8 commit c5a9641
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 7 deletions.
3 changes: 3 additions & 0 deletions tests/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,9 @@ def record_to_bk_value(self, stream, record):
def tap_name(self):
return "tap-xero"

def name(self):
return "tap_tester_xero_connection"

def get_properties(self):
return {
"start_date" : self.start_dt.strftime("%Y-%m-%dT%H:%M:%SZ"),
Expand Down
3 changes: 0 additions & 3 deletions tests/test_archived_contacts_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ def setUp(self):
self.include_archived_contacts = None
super().setUp()

def name(self):
return "tap_tester_xero_common_connection"

def get_properties(self):
properties = super().get_properties()

Expand Down
2 changes: 0 additions & 2 deletions tests/test_xero_bookmarks.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
from base import XeroScenarioBase

class XeroBookmarks(XeroScenarioBase):
def name(self):
return "tap_tester_xero_common_connection"

def check_output_record_counts(self):
counts_by_stream = runner.examine_target_output_file(
Expand Down
2 changes: 0 additions & 2 deletions tests/test_xero_future_dates_no_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
from base import XeroScenarioBase

class XeroFutureDatesNoData(XeroScenarioBase):
def name(self):
return "tap_tester_xero_common_connection"

@property
def state(self):
Expand Down

0 comments on commit c5a9641

Please sign in to comment.