Skip to content
This repository has been archived by the owner on Sep 23, 2024. It is now read-only.

Commit

Permalink
Wrap mocked function
Browse files Browse the repository at this point in the history
  • Loading branch information
judahrand committed Jan 18, 2022
1 parent 45a9a9d commit c961aea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_full_table_interruption.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def setUp(self):
global CAUGHT_MESSAGES
CAUGHT_MESSAGES.clear()

@mock.patch('tap_postgres.sync_logical_streams')
@mock.patch('tap_postgres.sync_logical_streams', wraps=tap_postgres.sync_logical_streams)
def test_catalog(self, mock_sync_logical_streams):
singer.write_message = singer_write_message_no_cow
pg_common.write_schema_message = singer_write_message_ok
Expand Down

0 comments on commit c961aea

Please sign in to comment.