Skip to content

Commit

Permalink
Merge branch 'tdl-23431' of github.com:singer-io/tap-salesforce into …
Browse files Browse the repository at this point in the history
…tdl-23431
  • Loading branch information
bhuvana-talend committed Sep 5, 2023
2 parents b867a8f + ce115f4 commit 0556d72
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/test_table_reset.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import os
import copy
from sfbase import SFBaseTest
from tap_tester.base_suite_tests.table_reset_test import TableResetTest

Expand All @@ -17,3 +18,7 @@ def streams_to_test(self):
@property
def reset_stream(self):
return ('User')

def manipulate_state(self,current_state):
new_state = copy.deepcopy(current_state)
return new_state

0 comments on commit 0556d72

Please sign in to comment.