Skip to content

Commit c57dabc

Browse files
committed
fixed tests
1 parent b150f4e commit c57dabc

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/test_sync.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -937,7 +937,9 @@ def test_setup(self, mock_teardown, sync):
937937
},
938938
)
939939
mock_create_function.assert_called_once_with("public")
940-
mock_teardown.assert_called_once_with(drop_view=False)
940+
mock_teardown.assert_called_once_with(
941+
drop_view=False, polling=False, wal=False
942+
)
941943

942944
@patch("pgsync.redisqueue.RedisQueue.delete")
943945
def test_teardown(self, mock_redis_delete, sync):

0 commit comments

Comments
 (0)